-
Notifications
You must be signed in to change notification settings - Fork 224
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(comms/yamux): dont poll the substream after closing/error #6911
Conversation
WalkthroughThis PR modifies the Changes
Sequence Diagram(s)sequenceDiagram
participant Worker as YamuxWorker
participant Conn as Connection
Worker->>Worker: new() initializes is_closed = false
Worker->>Worker: run() begins processing requests
alt Error occurs or channel closes
Worker->>Worker: Set is_closed = true and log message
else Normal flow
Worker->>Worker: Continue processing (is_closed remains false)
end
Worker->>Worker: close() called with mutable self
alt Already closed
Worker-->>Worker: Return early (no action)
else
Worker->>Worker: Update state to closed and proceed with cleanup
end
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (8)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Test Results (CI) 3 files 129 suites 46m 46s ⏱️ Results for commit 0bd7775. ♻️ This comment has been updated with latest results. |
Test Results (Integration tests) 2 files 11 suites 18m 28s ⏱️ For more details on these failures, see this check. Results for commit 0bd7775. ♻️ This comment has been updated with latest results. |
* development: chore: new release v1.13.3-pre.0 (tari-project#6919) fix: fix migration 5 (tari-project#6915) chore: update change logs (tari-project#6913) chore: new release v1.13.2-pre.0 (tari-project#6912) fix: randomX seed management (tari-project#6910) fix(comms/yamux): dont poll the substream after closing/error (tari-project#6911) fix: dont poll yamux substream after an error (tari-project#6909) feat: remove memory allocation for max_size_vec (tari-project#6903) feat: add display info to yamux (tari-project#6904)
Description
fix(comms/yamux): dont poll the substream after closing/error
Motivation and Context
We inadvertently polled the connection after closing it/after an error. This is not correct and results in a panic
Ref libp2p/rust-yamux#199
The PR above prevents the panic and sets the connection state to closed.
This related PR can also be merged before/after this one:
#6909
How Has This Been Tested?
Not explicitly tested
What process can a PR reviewer use to test or verify this change?
Breaking Changes
Summary by CodeRabbit