commit | ac0a82d7ba4ce9b1ee5d8d7e44af6153439ae553 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@onlab.us> | Thu Feb 16 08:58:59 2017 -0800 |
committer | Ray Milkey <ray@onlab.us> | Thu Feb 16 23:11:57 2017 +0000 |
tree | dd87101b7ccd60388e077f0408dc524b4fa06d1e | |
parent | de10c78a4ba342577d5d19fa59f9e5c7c862cf13 [diff] |
Suppress stack trace due to a network timeout that can be recovered from Change-Id: I93f741e194fb96e7f1a681cdc8463d453e2e2bbc
diff --git a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/WorkPartitionManager.java b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/WorkPartitionManager.java index 337bc55..a21a8e9 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/intent/impl/WorkPartitionManager.java +++ b/core/store/dist/src/main/java/org/onosproject/store/intent/impl/WorkPartitionManager.java
@@ -150,7 +150,8 @@ try { rebalance(); } catch (Exception e) { - log.warn("Exception caught during rebalance task. Will retry in " + RETRY_AFTER_DELAY_SEC + " seconds", e); + log.warn("Exception caught during rebalance task. Will retry in " + + RETRY_AFTER_DELAY_SEC + " seconds", e.getMessage()); scheduleRebalance(RETRY_AFTER_DELAY_SEC); } }