We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cabbec commit c02b4c3Copy full SHA for c02b4c3
interceptor/tracing_interceptor.go
@@ -529,8 +529,8 @@ func (t *tracingWorkflowInboundInterceptor) HandleQuery(
529
ctx workflow.Context,
530
in *HandleQueryInput,
531
) (any, error) {
532
- // Only add tracing if enabled and not replaying
533
- if t.root.options.DisableQueryTracing || workflow.IsReplaying(ctx) {
+ // Only add tracing if enabled
+ if t.root.options.DisableQueryTracing {
534
return t.Next.HandleQuery(ctx, in)
535
}
536
// Start span reading from header
0 commit comments