-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIXED] Max streams reached with parallel stream creation (#6502)
Maximum streams reached errors would be returned when creating (the same) streams in parallel: - if max streams = 1, the second create request would fail as the previous create request being inflight made it exceed the limit, even if it was about the same stream - if max streams > 1, if the streams already existed would count the streams twice, once for the streams existing already, and another time due to being inflight Signed-off-by: Maurice van Veen <[email protected]>
- Loading branch information
Showing
2 changed files
with
80 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters