Update replicator ports and silence socket timeout on windows (#4770)

automerge
This commit is contained in:
Sagar Dhawan
2019-06-21 11:28:52 -07:00
committed by Grimes
parent 5feeb257bb
commit da925142d1
2 changed files with 6 additions and 4 deletions

View File

@@ -570,7 +570,8 @@ impl Blob {
break;
}
Err(e) => {
if e.kind() != io::ErrorKind::WouldBlock {
if e.kind() != io::ErrorKind::WouldBlock && e.kind() != io::ErrorKind::TimedOut
{
info!("recv_from err {:?}", e);
}
return Err(Error::IO(e));