Skip to content

Commit

Permalink
Enable azure-servicebus produceConsumeWithCustomClients test
Browse files Browse the repository at this point in the history
Fixes #6950
  • Loading branch information
jamesnetherton committed Feb 11, 2025
1 parent 3de09bf commit 5a5bb68
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ public void configure() {

// Queue consumer with a custom client
from(azureServicebus(queueName.get())
// TODO: https://github.com/apache/camel-quarkus/issues/6950
.connectionString("not-needed-to-be-removed")
.processorClient("#customProcessorClient"))
.autoStartup(false)
.routeId("servicebus-queue-consumer-custom-processor")
Expand Down Expand Up @@ -127,8 +125,6 @@ public void configure() {
// Produces messages to a queue using a custom sender client
from(direct("send-message-custom-client"))
.to(azureServicebus(queueName.get())
// TODO: https://github.com/apache/camel-quarkus/issues/6950
.connectionString("not-needed-to-be-removed")
.senderClient("#customSenderClient"));

// Produces messages using TOKEN_CREDENTIAL authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
import org.jboss.logging.Logger;
import org.junit.jupiter.api.Assumptions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down Expand Up @@ -177,7 +176,6 @@ void multipleMessages() {
}
}

@Disabled("https://github.com/apache/camel-quarkus/issues/6950")
@Test
void produceConsumeWithCustomClients() {
final String messageBody = UUID.randomUUID().toString();
Expand Down

0 comments on commit 5a5bb68

Please sign in to comment.