This commit is contained in:
Bojan Serafimov
2022-01-18 16:39:04 -05:00
parent 2e4307cfe5
commit 7342088fcc
2 changed files with 4 additions and 2 deletions

View File

@@ -195,7 +195,9 @@ impl ProxyConnection {
if received_something {
bail!("connection is lost");
} else {
return Ok(None); // Probably load balancer health check
// Probably load balancer health check
// TODO check peer_addr to make sure.
return Ok(None);
}
}
bad => bail!("unexpected message type: {:?}", bad),