JiriOndrusek commented on a change in pull request #3458: URL: https://github.com/apache/camel-quarkus/pull/3458#discussion_r785783092
########## File path: integration-test-groups/aws2/aws2-s3/src/test/java/org/apache/camel/quarkus/component/aws2/s3/it/Aws2S3Test.java ########## @@ -41,6 +44,9 @@ private int objects_num_before; private int objects_num_after; + @Aws2Client(LocalStackContainer.Service.S3) + S3Client client; Review comment: It is requirement for client created via quarkus, that the client has to be injected (doesn't need to be used). The injection point is detected by quarkus and client is created. If there is no injection point, client is not created even if all required paameters are present (https://camel.apache.org/camel-quarkus/2.6.x/reference/extensions/aws2-s3.html#_optional_integration_with_quarkus_amazon_s3) -- 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