1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Pass pointer to high priority service as a parameter for log_view()

The pointer will pass applier context to log_view(), where it
can be used for stable storage access.
This commit is contained in:
Teemu Ollakka
2018-07-15 19:00:10 +03:00
parent 86472ee420
commit 21ae2c849e
5 changed files with 20 additions and 6 deletions

View File

@ -90,7 +90,8 @@ void db::server_service::log_dummy_write_set(
wsrep::log_info() << "Dummy write set: " << meta.seqno();
}
void db::server_service::log_view(const wsrep::view&)
void db::server_service::log_view(wsrep::high_priority_service*,
const wsrep::view&)
{
wsrep::log_info() << "View";
}