From edc8a1a8e5a63e6af4f59088aa4f9f7a95f59f51 Mon Sep 17 00:00:00 2001 From: Konstantin Osipov <kostja@tarantool.org> Date: Fri, 15 Aug 2014 19:26:44 +0400 Subject: [PATCH] Update a status message ("client" -> "replica") --- src/box/replication.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/box/replication.cc b/src/box/replication.cc index 2651e5d652..4199ddd754 100644 --- a/src/box/replication.cc +++ b/src/box/replication.cc @@ -617,7 +617,7 @@ replication_relay_recv(ev_loop * /* loop */, struct ev_io *w, int __attribute__( int rc = recv(replica_sock, &data, sizeof(data), 0); if (rc == 0 || (rc < 0 && errno == ECONNRESET)) { - say_info("the client has closed its replication socket, exiting"); + say_info("the replica has closed its socket, exiting"); exit(EXIT_SUCCESS); } if (rc < 0) -- GitLab