Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Jul 17, 2024
2 parents d4db072 + 13c89c4 commit 379020e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/usf/inspect/core/StageTracker.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static <T, E extends Throwable> T call(SafeCallable<T,E> fn, StageConsume
try {
cons.accept(s, e, o, t);
}
catch (Exception ex) {// do not throw exception
catch (Throwable ex) {// do not throw exception
log.warn("cannot collect stage metrics, {}", ex.getMessage());
}
}
Expand Down

0 comments on commit 379020e

Please sign in to comment.