Skip to content

Commit

Permalink
Improve exception handle of transaction check service (#1783)
Browse files Browse the repository at this point in the history
  • Loading branch information
areyouok committed Feb 24, 2020
1 parent 35c3888 commit d15234c
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -240,8 +240,7 @@ public void check(long transactionTimeout, int transactionCheckMax,
transactionalMessageBridge.updateConsumeOffset(opQueue, newOpOffset);
}
}
} catch (Exception e) {
e.printStackTrace();
} catch (Throwable e) {
log.error("Check error", e);
}

Expand Down

0 comments on commit d15234c

Please sign in to comment.