Skip to content

Commit

Permalink
raft: server: print the ID of aborted server
Browse files Browse the repository at this point in the history
  • Loading branch information
kbr-scylla committed Dec 7, 2021
1 parent 45fe0d0 commit 75bab2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raft/server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ void server_impl::abort_snapshot_transfers() {
}

future<> server_impl::abort() {
logger.trace("abort() called");
logger.trace("[{}]: abort() called", _id);
_fsm->stop();
_apply_entries.abort(std::make_exception_ptr(stop_apply_fiber()));

Expand Down

0 comments on commit 75bab2b

Please sign in to comment.