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 3e46cbd commit 5ed31b6Copy full SHA for 5ed31b6
internal/internal_flags.go
@@ -2,6 +2,7 @@ package internal
2
3
import (
4
"math"
5
+ "os"
6
7
"go.temporal.io/api/workflowservice/v1"
8
)
@@ -33,7 +34,7 @@ const (
33
34
35
// unblockSelectorSignal exists to allow us to configure the default behavior of
36
// SDKFlagBlockedSelectorSignalReceive. This is primarily useful with tests.
-var unblockSelectorSignal = true
37
+var unblockSelectorSignal = os.Getenv("UNBLOCK_SIGNAL_SELECTOR") != ""
38
39
func sdkFlagFromUint(value uint32) sdkFlag {
40
switch value {
0 commit comments