diff --git a/src/cli/main.cc b/src/cli/main.cc index a9190de134b..11a64760755 100644 --- a/src/cli/main.cc +++ b/src/cli/main.cc @@ -47,7 +47,7 @@ Server *srv = nullptr; extern "C" void SignalHandler([[maybe_unused]] int sig) { if (srv && !srv->IsStopped()) { - LOG(INFO) << "Signal " << sig << " received, stoping the server"; + LOG(INFO) << "Signal " << sig << " received, stopping the server"; srv->Stop(); } } diff --git a/src/commands/cmd_server.cc b/src/commands/cmd_server.cc index 119035d58db..f17903c21d3 100644 --- a/src/commands/cmd_server.cc +++ b/src/commands/cmd_server.cc @@ -544,7 +544,7 @@ class CommandShutdown : public Commander { } if (!srv->IsStopped()) { - LOG(INFO) << "SHUTDOWN command received, stoping the server"; + LOG(INFO) << "SHUTDOWN command received, stopping the server"; srv->Stop(); } return Status::OK();