mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-05 03:41:13 +03:00
Replaced replicating mode with local.
The intended purpose for local mode was local storage access without entering replication hooks. However, the same can be achieved with high priority mode. Removed replicating mode and use local instead to denote locally processing clients.
This commit is contained in:
@ -53,7 +53,7 @@ void db::storage_engine::bf_abort_some(const wsrep::transaction& txc)
|
||||
for (auto victim : transactions_)
|
||||
{
|
||||
wsrep::client_state& cc(victim->client_state());
|
||||
if (cc.mode() == wsrep::client_state::m_replicating)
|
||||
if (cc.mode() == wsrep::client_state::m_local)
|
||||
{
|
||||
if (victim->bf_abort(txc.seqno()))
|
||||
{
|
||||
|
Reference in New Issue
Block a user