JiriOndrusek commented on code in PR #7082: URL: https://github.com/apache/camel-quarkus/pull/7082#discussion_r1983224718
########## integration-test-groups/azure/azure-servicebus/src/test/java/org/apache/camel/quarkus/component/azure/servicebus/it/AzureServiceBusTest.java: ########## @@ -357,7 +366,10 @@ static Stream<Arguments> produceConsumeOptions() { String[] payloadTypes = { String.class.getSimpleName(), byte[].class.getSimpleName(), BinaryData.class.getSimpleName() }; - AmqpTransportType[] transportTypes = AmqpTransportType.values(); + //in mocked backend, the AMQP_WEB_SOCKET is not supported, see https://github.com/Azure/azure-service-bus-emulator-installer/issues/51 + AmqpTransportType[] transportTypes = Arrays.stream(AmqpTransportType.values()) + .filter(type -> AzureServiceBusHelper.isMockBackEnd() && type != AmqpTransportType.AMQP_WEB_SOCKETS) + .toArray(AmqpTransportType[]::new); Review Comment: Thanks for the verifycation with the real cloud! Fix is added to the PR. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org