Skip to content

Commit

Permalink
Merge pull request #3593 from bipinprasad/storm-3992
Browse files Browse the repository at this point in the history
[STORM-3992]Print stack trace upon Exception when getting heartbeat timeout
  • Loading branch information
jnioche authored Nov 1, 2023
2 parents 8f88308 + b85fb9b commit 60f0e5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2663,7 +2663,7 @@ private int getTopologyHeartbeatTimeoutSecs(String topoId) {
return getTopologyHeartbeatTimeoutSecs(topoConf);
} catch (Exception e) {
// contain any exception
LOG.warn("Exception when getting heartbeat timeout.", e.getMessage());
LOG.warn("Exception when getting heartbeat timeout", e);
return ObjectReader.getInt(conf.get(DaemonConfig.NIMBUS_TASK_TIMEOUT_SECS));
}
}
Expand Down

0 comments on commit 60f0e5f

Please sign in to comment.