Skip to content

Commit

Permalink
Investigate raft failures
Browse files Browse the repository at this point in the history
  • Loading branch information
dragomirp committed Feb 26, 2024
1 parent f3e3d33 commit b37ed88
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@ def remove_raft_member(self, member_ip: str) -> None:
).decode("UTF-8")

if "SUCCESS" not in result:
logger.error(f"!!!!!!!!!!!!!!!{result}")
raise RemoveRaftMemberFailedError()

@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=2, max=10))
Expand Down

0 comments on commit b37ed88

Please sign in to comment.