Commit 7f20db9a authored by TousakaRin's avatar TousakaRin

Use the peer_id to call the FeedbackCircuitBreaker only when the sending_sock is NULL

parent d1e69396
...@@ -765,9 +765,14 @@ void Controller::Call::OnComplete(Controller* c, int error_code/*note*/, ...@@ -765,9 +765,14 @@ void Controller::Call::OnComplete(Controller* c, int error_code/*note*/,
sending_sock.get(), c, error_code); sending_sock.get(), c, error_code);
} }
if (enable_circuit_breaker) { if (enable_circuit_breaker) {
SocketUniquePtr sock; if (sending_sock) {
if (Socket::Address(peer_id, &sock) == 0) { SocketUniquePtr sock;
sock->FeedbackCircuitBreaker(error_code, if (Socket::Address(peer_id, &sock) == 0) {
sock->FeedbackCircuitBreaker(error_code,
butil::gettimeofday_us() - begin_time_us);
}
} else {
sending_sock->FeedbackCircuitBreaker(error_code,
butil::gettimeofday_us() - begin_time_us); butil::gettimeofday_us() - begin_time_us);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment