Fix transaction replay timeout
The timeout would not be triggered due to the fact that the delayed_retry_timeout wasn't inspected.
This commit is contained in:
@ -330,7 +330,7 @@ bool RWSplitSession::route_single_stmt(GWBUF* querybuf)
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (can_retry_query() || m_is_replay_active)
|
||||
else if (can_retry_query() || can_continue_trx_replay())
|
||||
{
|
||||
retry_query(gwbuf_clone(querybuf));
|
||||
succp = true;
|
||||
|
Reference in New Issue
Block a user