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
Conn.sendMessage()'s comment states that the caller must be holding the lock, but question.PipelineSend invokes it in an explicit call to syncutil.Without. Unfortunately, just removing it deadlocks, since the nested call to newPipelineCallMessage tries to acquire the lock. This needs to be reworked so we're following all contracts.
The text was updated successfully, but these errors were encountered:
Conn.sendMessage()'s comment states that the caller must be holding the lock, but question.PipelineSend invokes it in an explicit call to
syncutil.Without
. Unfortunately, just removing it deadlocks, since the nested call to newPipelineCallMessage tries to acquire the lock. This needs to be reworked so we're following all contracts.The text was updated successfully, but these errors were encountered: