You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2020/09/11 07:15:43 UTC

[GitHub] [camel-quarkus] ppalaga commented on a change in pull request #1780: Fix intermittent failures of SmallRyeReactiveMessagingIT

ppalaga commented on a change in pull request #1780:
URL: https://github.com/apache/camel-quarkus/pull/1780#discussion_r486820543



##########
File path: integration-tests/smallrye-reactive-messaging/src/main/java/org/apache/camel/quarkus/component/smallrye/reactive/messaging/it/SmallRyeReactiveMessagingResource.java
##########
@@ -52,6 +54,8 @@ public Response post(String message) throws Exception {
     @Produces(MediaType.TEXT_PLAIN)
     @GET
     public String getValues() {
-        return String.join(",", results.getResults());
+        List<String> values = results.getResults();
+        Collections.sort(values);

Review comment:
       Is this the actual fix?




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org