Changed max number fo retries to send each remote event from 3 to 1

This commit is contained in:
Eugene Livis 2016-02-25 13:06:02 -05:00
parent e4abfdb637
commit 9c0813a96c

View File

@ -40,7 +40,7 @@ public final class AutopsyEventPublisher {
* Composed of thread-safe objects.
*/
private static final Logger logger = Logger.getLogger(AutopsyEventPublisher.class.getName());
private static final int MAX_REMOTE_EVENT_PUBLISH_TRIES = 3;
private static final int MAX_REMOTE_EVENT_PUBLISH_TRIES = 1;
private final LocalEventPublisher localPublisher;
private RemoteEventPublisher remotePublisher;
private String currentChannelName;