feature(worker): remove RuntimeException wrapping

This commit is contained in:
bencvdb 2019-06-25 15:01:54 -07:00
parent b8861e50b1
commit 08bf7f7000

View file

@ -110,7 +110,6 @@ class InitializeTask implements ITask {
LOG.error("Application initialize() threw exception: ", e); LOG.error("Application initialize() threw exception: ", e);
} else { } else {
LOG.error("Caught exception: ", e); LOG.error("Caught exception: ", e);
throw new RuntimeException(e);
} }
exception = e; exception = e;
// backoff if we encounter an exception. // backoff if we encounter an exception.