Github user poornachandra commented on a diff in the pull request: https://github.com/apache/incubator-tephra/pull/32#discussion_r100028436 --- Diff: tephra-core/src/main/java/org/apache/tephra/coprocessor/TransactionStateCache.java --- @@ -70,7 +71,11 @@ public void setConf(Configuration conf) { @Override protected void startUp() throws Exception { - refreshState(); + try { + refreshState(); + } catch (IOException ioe) { + LOG.info("Error refreshing transaction state cache: " + ioe.getMessage()); --- End diff -- Would be a good idea to log the stack trace
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---