Browse Source
Don't warn when PeriodicUpdate cannot be sent
android
Roman Zeyde
5 years ago
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB
1 changed files with
1 additions and
1 deletions
-
src/rpc.rs
|
@ -495,7 +495,7 @@ impl RPC { |
|
|
Notification::Periodic => { |
|
|
Notification::Periodic => { |
|
|
for (i, sender) in senders.iter() { |
|
|
for (i, sender) in senders.iter() { |
|
|
if let Err(e) = sender.try_send(Message::PeriodicUpdate) { |
|
|
if let Err(e) = sender.try_send(Message::PeriodicUpdate) { |
|
|
warn!("failed to send PeriodicUpdate to peer {}: {}", i, e); |
|
|
debug!("failed to send PeriodicUpdate to peer {}: {}", i, e); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|