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 e847817 commit 156d317Copy full SHA for 156d317
internal/workflowstate/signalchannels.go
@@ -30,7 +30,7 @@ func GetSignalChannel[T any](ctx sync.Context, wf *WfState, name string) sync.Ch
30
}
31
32
// Otherwise, create new channel
33
- c := sync.NewBufferedChannel[T](10_000)
+ c := sync.NewBufferedChannel[T](100)
34
35
// Add channel to map
36
wf.signalChannels[name] = &signalChannel{
0 commit comments