Skip to content

Commit

Permalink
Change StartRsync ERROR log (OpenAtomFoundation#796)
Browse files Browse the repository at this point in the history
Failed to start rsync may caused by port confilct or rsync not installed
  • Loading branch information
whoiami authored Nov 7, 2019
1 parent 92d3700 commit 0146681
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pika_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void PikaServer::Start() {
ret = pika_rsync_service_->StartRsync();
if (0 != ret) {
tables_.clear();
LOG(FATAL) << "Start Rsync Error: bind port " +std::to_string(pika_rsync_service_->ListenPort()) + " conflict"
LOG(FATAL) << "Start Rsync Error: bind port " +std::to_string(pika_rsync_service_->ListenPort()) + " failed"
<< ", Listen on this port to receive Master FullSync Data";
}

Expand Down

0 comments on commit 0146681

Please sign in to comment.