Skip to content

Commit

Permalink
Remove azure-eventhubs shared access configuration for AZURE_IDENTITY…
Browse files Browse the repository at this point in the history
… credentials test

Fixes #6368
  • Loading branch information
jamesnetherton committed Sep 16, 2024
1 parent 2861494 commit 402634f
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,10 +192,6 @@ public void configure() {
// Consumes events from partition 4 using AZURE_IDENTITY credential type
from(azureEventhubs(eventHubsPath)
.credentialType(CredentialType.AZURE_IDENTITY)
// TODO: Remove shared access config
// https://github.com/apache/camel-quarkus/issues/6368
.sharedAccessName("fake-name")
.sharedAccessKey("fake-key")
.blobAccountName(azureStorageAccountName)
.blobAccessKey(azureStorageAccountKey)
.blobContainerName(azureBlobContainerName.get()))
Expand All @@ -210,10 +206,6 @@ public void configure() {

from("direct:sendEventUsingAzureIdentity")
.to(azureEventhubs(eventHubsPath)
// TODO: Remove shared access config
// https://github.com/apache/camel-quarkus/issues/6368
.sharedAccessName("fake-name")
.sharedAccessKey("fake-key")
.credentialType(CredentialType.AZURE_IDENTITY));
}
}
Expand Down

0 comments on commit 402634f

Please sign in to comment.