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
Transaction result blocking send
This fixes a race condition where a transaction result could attempt to
send on the result channel before it had a receiver (i.e. before
transaction.WaitForResult has been called), causing the caller to never
see the result. This was very likely to occur when when two peers and
the STUN/TURN server were on the same host.
Removing outer locks around setLifetime
Removing the outer locks around the setLifetime call which
causes a deadlock as setLifetime wants the same lock.