Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private static class PreVoteSupportedHandler implements ElectionTimeoutHandler
{
public Outcome handle( RaftMessages.Timeout.Election election, Outcome outcome, ReadableRaftState ctx, Log log ) throws IOException
{
log.info( "Election timeout triggered" );
log.info( "Election timeout triggered (with supporters)" );
if ( Election.startPreElection( ctx, outcome, log ) )
{
outcome.setPreElection( true );
Expand All @@ -242,7 +242,7 @@ private static class PreVoteUnsupportedHandler implements ElectionTimeoutHandler
@Override
public Outcome handle( RaftMessages.Timeout.Election election, Outcome outcome, ReadableRaftState ctx, Log log ) throws IOException
{
log.info( "Election timeout triggered" );
log.info( "Election timeout triggered (without supporters)" );
if ( Election.startRealElection( ctx, outcome, log ) )
{
outcome.setNextRole( CANDIDATE );
Expand Down
Loading