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
Replies to stashed Asks are no longer dropped after Unstash / UnstashAll under concurrent load (#1312). Stash, Unstash, and UnstashAll clone the in-flight message into a pooled receive context without clearing the late-reply guard, so a recycled context silently dropped the reply sent with Response and the caller failed with request timed out. The clone path now clears the guard, and actor and grain Ask callers no longer write the guard on a context already handed to the mailbox, which could drop an unrelated request's reply.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
🔧 Fixes
Unstash/UnstashAllunder concurrent load (#1312).Stash,Unstash, andUnstashAllclone the in-flight message into a pooled receive context without clearing the late-reply guard, so a recycled context silently dropped the reply sent withResponseand the caller failed withrequest timed out. The clone path now clears the guard, and actor and grain Ask callers no longer write the guard on a context already handed to the mailbox, which could drop an unrelated request's reply.🔀 Pull Requests
Full Changelog: v4.5.0...v4.5.1
This discussion was created from the release v4.5.1.
All reactions