Skip to content

Commit

Permalink
Fix recursion in TracingWorkerInterceptor (temporalio#2040)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns authored Apr 15, 2024
1 parent 81cc6e0 commit c6cceca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public void registerDynamicUpdateHandler(RegisterDynamicUpdateHandlerInput input
if (!WorkflowUnsafe.isReplaying()) {
trace.add("registerDynamicUpdateHandler");
}
this.registerDynamicUpdateHandler(input);
next.registerDynamicUpdateHandler(input);
}

@Override
Expand Down

0 comments on commit c6cceca

Please sign in to comment.