llowinge commented on a change in pull request #1877: URL: https://github.com/apache/camel-quarkus/pull/1877#discussion_r500182344
########## File path: integration-tests/twitter/src/test/java/org/apache/camel/quarkus/component/twitter/CamelTwitterTest.java ########## @@ -80,8 +80,10 @@ public void e2e() { final long sinceId = Long.parseLong(messageId) - 1; /* Check that the message is seen in the timeline by the polling consumer */ { + final int initialDelayMs = 60000; final int retries = 5; final int delayMs = 3000; + Thread.sleep(initialDelayMs); Review comment: @ppalaga Yes, in ideal world, it would be much better, but with such approach it leads to ``` 429:Returned in API v1.1 when a request cannot be served due to the application's rate limit having been exhausted for the resource. See Rate Limiting in API v1.1.(https://dev.twitter.com/docs/rate-limiting/1.1) ``` ---------------------------------------------------------------- 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: us...@infra.apache.org