mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-28 20:02:00 +03:00
Client state history, fixed races in server state, logging improv
This commit is contained in:
@ -582,6 +582,7 @@ namespace wsrep
|
||||
, mode_(mode)
|
||||
, toi_mode_()
|
||||
, state_(s_none)
|
||||
, state_hist_()
|
||||
, transaction_(*this)
|
||||
, toi_meta_()
|
||||
, allow_dirty_reads_()
|
||||
@ -612,6 +613,7 @@ namespace wsrep
|
||||
enum mode mode_;
|
||||
enum mode toi_mode_;
|
||||
enum state state_;
|
||||
std::vector<enum state> state_hist_;
|
||||
wsrep::transaction transaction_;
|
||||
wsrep::ws_meta toi_meta_;
|
||||
bool allow_dirty_reads_;
|
||||
|
Reference in New Issue
Block a user