-
Notifications
You must be signed in to change notification settings - Fork 983
More reliable peers check #3824
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ab9715d
peer: unknown state for new peers, check peers state on every monitor…
ardocrat 9585c02
p2p: cleanup before selection at monitor, add outbound to connected l…
ardocrat 91f6ddc
p2p: reduced amount of total peers to check at monitor
ardocrat 1258b84
p2p: do not check healthy and defunct peers more often than once per …
ardocrat b172256
peer: update last_attempt when changing peer state to other than Banned
ardocrat 34a96d5
fix: log of peers amount to check
ardocrat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -183,10 +183,13 @@ impl<'de> Visitor<'de> for PeerAddrs { | |
| Ok(ip) => peers.push(PeerAddr(ip)), | ||
| // If that fails it's probably a DNS record | ||
| Err(_) => { | ||
| let socket_addrs = entry.to_socket_addrs().map_err(|_| { | ||
| serde::de::Error::custom(format!("Unable to resolve DNS: {}", entry)) | ||
| })?; | ||
| peers.append(&mut socket_addrs.map(PeerAddr).collect()); | ||
| let socket_addrs: Result<std::vec::IntoIter<SocketAddr>, M::Error> = | ||
| entry.to_socket_addrs().map_err(|_| { | ||
| serde::de::Error::custom(format!("Unable to resolve DNS: {}", entry)) | ||
| }); | ||
| if let Ok(socket_addrs) = socket_addrs { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is used in too many places to just drop entries on dns failure. The failure could be temporary, but could lead to all |
||
| peers.append(&mut socket_addrs.map(PeerAddr).collect()); | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
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.
You should change this back to
Utc::now().timestamp()or else they'll likely be removed on the next hourly expiry sweep instead of staying around for the 14-day retry window.