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
When sending a sync_spawn_command I notice in riak_core_vnode.erl:345 that the {stop, Reason, NewModState} case doesn't reply to the sender. Given that riak_core_vnode_master:148 issues a sync_spawn_command with a timeout of infinity, the caller will hang forever.
A similar thing happens when the vnode crashes during a handle_command. Any other command being handled at the time of the crash will hang forever. I think the vnode_master ought to trap_exits to catch vnode crashes and reply({vnode_error, _} to the sender.