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 9031064 commit 43e6640Copy full SHA for 43e6640
workflow/timer.go
@@ -61,7 +61,7 @@ func ScheduleTimer(ctx Context, delay time.Duration, opts ...timerOption) Future
61
62
timerCmd := command.NewScheduleTimerCommand(scheduleEventID, at, timerConfig.Name, traceContext)
63
wfState.AddCommand(timerCmd)
64
- wfState.TrackFuture(scheduleEventID, workflowstate.AsDecodingSettable(contextvalue.Converter(ctx), fmt.Sprintf("timer:%v", delay), f))
+ wfState.TrackFuture(scheduleEventID, workflowstate.AsDecodingSettable(contextvalue.Converter(ctx), fmt.Sprintf("timer:%s:%v", timerConfig.Name, delay), f))
65
66
cancelReceiver := &sync.Receiver[struct{}]{
67
Receive: func(v struct{}, ok bool) {
0 commit comments