Skip to content

Commit

Permalink
Added unique identifier to distinguish Callable instances (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
climategadgets committed May 18, 2021
1 parent c8ead06 commit 906f5c8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private Future<TransitionStatus> park(boolean async) {
Callable<TransitionStatus> c = () -> {

Marker m = new Marker("park/callable");
ThreadContext.push("park/callable");
ThreadContext.push("park/callable@" + Integer.toHexString(hashCode()));

try {

Expand Down

0 comments on commit 906f5c8

Please sign in to comment.