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
hangs forever (because there's 1 pending connection) which isn't right.
The connection provider (is probably wrongly) expecting that acquire will come along and decrease pending. I'd argue it a) shouldn't wait for acquire to come along b) acquire cannot actually do that right now because acquire only decreases pending IF we're .active.
That's a real race that can happen in real usage I believe.
The text was updated successfully, but these errors were encountered:
This test:
hangs forever (because there's 1 pending connection) which isn't right.
The connection provider (is probably wrongly) expecting that
acquire
will come along and decrease pending. I'd argue it a) shouldn't wait foracquire
to come along b)acquire
cannot actually do that right now becauseacquire
only decreasespending
IF we're.active
.That's a real race that can happen in real usage I believe.
The text was updated successfully, but these errors were encountered: