-
-
Notifications
You must be signed in to change notification settings - Fork 400
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(udp): retry on ErrorKind::Interrupted #2074
Merged
Merged
Conversation
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
mxinden
commented
Nov 29, 2024
Ralith
approved these changes
Nov 29, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Ralith
reviewed
Nov 29, 2024
djc
approved these changes
Nov 29, 2024
Just needs rebasing! |
On Linux and Android, `quinn-udp` will retry a send on `ErrorKind::Interrupted`: https://github.com/quinn-rs/quinn/blob/e318cc4a80436fd9fa19c02886d682c49efca185/quinn-udp/src/unix.rs#L305-L312 Do the same on all other unix platforms.
moz-v2v-gh
pushed a commit
to mozilla/gecko-dev
that referenced
this pull request
Dec 11, 2024
…chain-reviewers `quinn-udp` `v0.5.8` contains an intermediary fix for Bug 1916558, see quinn-rs/quinn#2071. In addition `quinn-udp` `v0.5.8` Includes the following bugfixes: - quinn-rs/quinn#2072 - quinn-rs/quinn#2073 - quinn-rs/quinn#2074 - quinn-rs/quinn#2050 - quinn-rs/quinn#2047 Differential Revision: https://phabricator.services.mozilla.com/D231505
i3roly
pushed a commit
to i3roly/firefox-dynasty
that referenced
this pull request
Dec 12, 2024
…chain-reviewers `quinn-udp` `v0.5.8` contains an intermediary fix for Bug 1916558, see quinn-rs/quinn#2071. In addition `quinn-udp` `v0.5.8` Includes the following bugfixes: - quinn-rs/quinn#2072 - quinn-rs/quinn#2073 - quinn-rs/quinn#2074 - quinn-rs/quinn#2050 - quinn-rs/quinn#2047 Differential Revision: https://phabricator.services.mozilla.com/D231505
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified-and-comments-removed
that referenced
this pull request
Dec 13, 2024
…chain-reviewers `quinn-udp` `v0.5.8` contains an intermediary fix for Bug 1916558, see quinn-rs/quinn#2071. In addition `quinn-udp` `v0.5.8` Includes the following bugfixes: - quinn-rs/quinn#2072 - quinn-rs/quinn#2073 - quinn-rs/quinn#2074 - quinn-rs/quinn#2050 - quinn-rs/quinn#2047 Differential Revision: https://phabricator.services.mozilla.com/D231505 UltraBlame original commit: a8cd98601fdff821fe9cc516ddb61f54c104fb58
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-comments-removed
that referenced
this pull request
Dec 13, 2024
…chain-reviewers `quinn-udp` `v0.5.8` contains an intermediary fix for Bug 1916558, see quinn-rs/quinn#2071. In addition `quinn-udp` `v0.5.8` Includes the following bugfixes: - quinn-rs/quinn#2072 - quinn-rs/quinn#2073 - quinn-rs/quinn#2074 - quinn-rs/quinn#2050 - quinn-rs/quinn#2047 Differential Revision: https://phabricator.services.mozilla.com/D231505 UltraBlame original commit: a8cd98601fdff821fe9cc516ddb61f54c104fb58
gecko-dev-updater
pushed a commit
to marco-c/gecko-dev-wordified
that referenced
this pull request
Dec 13, 2024
…chain-reviewers `quinn-udp` `v0.5.8` contains an intermediary fix for Bug 1916558, see quinn-rs/quinn#2071. In addition `quinn-udp` `v0.5.8` Includes the following bugfixes: - quinn-rs/quinn#2072 - quinn-rs/quinn#2073 - quinn-rs/quinn#2074 - quinn-rs/quinn#2050 - quinn-rs/quinn#2047 Differential Revision: https://phabricator.services.mozilla.com/D231505 UltraBlame original commit: a8cd98601fdff821fe9cc516ddb61f54c104fb58
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On Linux and Android,
quinn-udp
will retry a send onErrorKind::Interrupted
:quinn/quinn-udp/src/unix.rs
Lines 305 to 312 in e318cc4
Do the same on all other unix platforms.