mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #2023] [MERGED] fix: Prevent task reaping from blocking #2760
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#2760
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/2023
Author: @lpraneis
Created: 9/13/2023
Status: ✅ Merged
Merged: 9/15/2023
Merged by: @djc
Base:
main← Head:now-or-never-flattening📝 Commits (1)
85311a5fix: Prevent task reaping from blocking📊 Changes
2 files changed (+32 additions, -2 deletions)
View changed files
📝
crates/resolver/src/name_server/connection_provider.rs(+4 -1)📝
crates/server/src/server/server_future.rs(+28 -1)📄 Description
Previously, the
reap_tasksfunction could cause a tokio task to spinloop.This is because
FutureExt::now_or_neverreturns an Option where T is the inner future's resolution type. Ifjoin_set.join_next()returned None, indicating there are no longer tasks to join, theFutureExt::now_or_neverwould returnSome(None).Then, the
is_some()spinloop in this function would see theSome(None)and busy loop callingFutureExt::now_or_never.The fix here is to use
Option::flattento transform the nested Option. Now, the call toreap_taskswill only loop when the innerjoin_set.join_nextreturnsSome(..), indicating that a task is already complete. When there are no tasks complete, or when theJoinSetis empty and returnsNone, thereap_tasksfunction will immediately yield.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.