1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-03 16:22:35 +03:00

Renamed client_context to client_state.

This commit is contained in:
Teemu Ollakka
2018-06-17 10:00:13 +03:00
parent 97ee96987e
commit dd28b173ab
33 changed files with 518 additions and 518 deletions

View File

@ -52,8 +52,8 @@ void db::storage_engine::bf_abort_some(const wsrep::transaction_context& txc)
{
for (auto victim : transactions_)
{
wsrep::client_context& cc(victim->client_context());
if (cc.mode() == wsrep::client_context::m_replicating)
wsrep::client_state& cc(victim->client_state());
if (cc.mode() == wsrep::client_state::m_replicating)
{
if (victim->bf_abort(txc.seqno()))
{