commit | 465548bbdf1bdcbc7f959becf500fbef4e566d6c | [log] [tgz] |
---|---|---|
author | buyingyi <buyingyi@gmail.com> | Thu Aug 15 13:46:57 2013 -0700 |
committer | buyingyi <buyingyi@gmail.com> | Thu Aug 15 13:46:57 2013 -0700 |
tree | 3a702f16dc721417507dc1e29a72754d82287ce5 | |
parent | d1c3b0791990f02aa32f762a20dcc822837bf8f6 [diff] |
print the full stack trace when failures propagate to pregelix driver
diff --git a/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/driver/Driver.java b/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/driver/Driver.java index 82f94b9..e65e987 100644 --- a/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/driver/Driver.java +++ b/pregelix-core/src/main/java/edu/uci/ics/pregelix/core/driver/Driver.java
@@ -146,7 +146,7 @@ } while (failed && retryCount < maxRetryCount); LOG.info("job finished"); } catch (Exception e) { - e.printStackTrace(); + e.printStackTrace(); throw new HyracksException(e); } }