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
Minor race prevention: do not mutate callers' retry policy (#1413)
Concurrently calling `workflow.WithActivityOptions` with a shared retry policy instance that does not set a backoff coefficient can trigger a race because this function mutated it unnecessarily.
The fix is easy: just don't do that :) There's no benefit to mutating it, and many downsides.
0 commit comments