You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Go worker flag names to match other language workers
WorkerOptions.FlagSet() now takes a prefix parameter. The outer CLI
passes "worker-" (so users write --worker-max-concurrent-activities),
and passthrough() strips it for the subprocess. The Go worker binary
passes "" so it accepts the stripped names, matching dotnet/python/
typescript/java workers.
m.fs.BoolVar(&m.ErrOnUnimplemented, "worker-err-on-unimplemented", false, "Fail on unimplemented actions (currently this only applies to concurrent client actions)")
m.fs.BoolVar(&m.ErrOnUnimplemented, prefix+"err-on-unimplemented", false, "Fail on unimplemented actions (currently this only applies to concurrent client actions)")
0 commit comments