Skip to content

Commit 9fd4f60

Browse files
authored
fix: ensure PubSub does not deadlock (#375)
1 parent 3b1399b commit 9fd4f60

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Terrabuild.PubSub/EventQueue.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type EventQueue(maxConcurrency: int) =
3737
UnboundedChannelOptions(
3838
SingleReader = false,
3939
SingleWriter = false,
40-
AllowSynchronousContinuations = true
40+
AllowSynchronousContinuations = false
4141
)
4242

4343
let normal = Channel.CreateUnbounded<WorkItem>(options)

0 commit comments

Comments
 (0)