aldettinger commented on a change in pull request #3074: URL: https://github.com/apache/camel-quarkus/pull/3074#discussion_r704381224
########## File path: integration-test-groups/aws2/aws2-sqs-sns/src/main/java/org/apache/camel/quarkus/component/aws2/sqs/it/Aws2SqsSnsResource.java ########## @@ -79,11 +83,48 @@ public Response sqsSend(String message) throws Exception { .build(); } - @Path("/sqs/receive") + @Path("/sqs/send/{queueName}") + @POST + @Consumes(MediaType.TEXT_PLAIN) + @Produces(MediaType.TEXT_PLAIN) + public Response sqsSendSpecificQueue(@PathParam("queueName") String queueName, String message) throws Exception { Review comment: Would method name `sqsSendToSpecificQueue()` be clearer ? -- 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