Skip to content

Commit

Permalink
Merge pull request percona#2013 from venkatesh-prasad-v/8.4-post-push…
Browse files Browse the repository at this point in the history
…-4173

PXC-4173: PXC node stalls with parallel replication workers executing…
  • Loading branch information
venkatesh-prasad-v authored Jan 28, 2025
2 parents 63d2342 + 3fbe507 commit e783b43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sql/rpl_replica.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7268,11 +7268,11 @@ wsrep_restart_point :
rli->set_commit_order_manager(commit_order_mngr);

#ifdef WITH_WSREP
if (WSREP_ON && wsrep_use_async_monitor
&& opt_replica_preserve_commit_order
&& !rli->is_parallel_exec()
&& rli->opt_replica_parallel_workers > 1) {
wsrep_async_monitor = new Wsrep_async_monitor(rli->opt_replica_parallel_workers);
if (WSREP_ON && wsrep_use_async_monitor &&
opt_replica_preserve_commit_order && !rli->is_parallel_exec() &&
rli->opt_replica_parallel_workers > 1) {
wsrep_async_monitor =
new Wsrep_async_monitor(rli->opt_replica_parallel_workers);
rli->set_wsrep_async_monitor(wsrep_async_monitor);
}
#endif /* WITH_WSREP */
Expand Down

0 comments on commit e783b43

Please sign in to comment.