Skip to content

Commit

Permalink
MDEV-35969 wsrep: add more details in service manager status
Browse files Browse the repository at this point in the history
Let's show the difference between donor and joiner.
  • Loading branch information
eworm-de committed Jan 29, 2025
1 parent 47908d3 commit 75632a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/wsrep_sst.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ static void* wsrep_sst_donor_monitor_thread(void *arg __attribute__((unused)))
"is not completed",
time_waited);
service_manager_extend_timeout(WSREP_EXTEND_TIMEOUT_INTERVAL,
"WSREP state transfer ongoing...");
"WSREP state transfer (donor) ongoing...");
}
}

Expand Down Expand Up @@ -162,7 +162,7 @@ static void* wsrep_sst_joiner_monitor_thread(void *arg __attribute__((unused)))
"is not completed",
time_waited);
service_manager_extend_timeout(WSREP_EXTEND_TIMEOUT_INTERVAL,
"WSREP state transfer ongoing...");
"WSREP state transfer (joiner) ongoing...");
}
}

Expand Down

0 comments on commit 75632a3

Please sign in to comment.