Skip to content

Commit

Permalink
gossiper: remove excess error logging from gossiper
Browse files Browse the repository at this point in the history
We remove a log of severity error that is later thrown as an
exception, being catched few lines below and then printed out as
a warning.

Fixes scylladb#8616
  • Loading branch information
Eliran Sinvani committed May 10, 2021
1 parent 8480839 commit eb6a785
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gms/gossiper.cc
Expand Up @@ -2013,7 +2013,6 @@ future<> gossiper::add_local_application_state(std::list<std::pair<application_s
if (!es) {
auto err = format("endpoint_state_map does not contain endpoint = {}, application_states = {}",
ep_addr, states);
logger.error("{}", err);
throw std::runtime_error(err);
}

Expand Down

0 comments on commit eb6a785

Please sign in to comment.