Github user rbnks commented on a diff in the pull request:
https://github.com/apache/incubator-streams/pull/51#discussion_r14898555
--- Diff:
streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/provider/TwitterErrorHandler.java
---
@@ -51,7 +51,7 @@ else if(e.isCausedByNetworkIssue())
LOGGER.info("Twitter Network Issues Detected. Backing
off...");
LOGGER.info("{} - {}", e.getExceptionCode(),
e.getLocalizedMessage());
try {
- Thread.sleep(backoff *= 2);
+ Thread.sleep(retry);
} catch (InterruptedException e1) {}
--- End diff --
Another swallowed interrupted exception.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---