1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-27 09:01:50 +03:00

Made client_id, transaction_id constructors explicit.

This commit is contained in:
Teemu Ollakka
2018-07-11 15:00:31 +03:00
parent d564a6f154
commit ddc6c6495b
13 changed files with 102 additions and 84 deletions

View File

@ -95,7 +95,7 @@ void db::server::client_thread(const std::shared_ptr<db::client>& client)
void db::server::start_client(size_t id)
{
auto client(std::make_shared<db::client>(
*this, id,
*this, wsrep::client_id(id),
wsrep::client_state::m_local,
simulator_.params()));
clients_.push_back(client);