1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-06-16 02:01:44 +03:00

Tests and fixes for replaying.

This commit is contained in:
Teemu Ollakka
2018-06-14 15:00:40 +03:00
parent ca6286d8b2
commit 0b6e49474f
11 changed files with 123 additions and 21 deletions

View File

@ -137,7 +137,7 @@ int wsrep::server_context::on_apply(
}
else
{
client_context.start_replaying();
client_context.start_replaying(ws_meta);
}
if (client_context.apply(data))
@ -251,7 +251,7 @@ int wsrep::server_context::on_apply(
}
else
{
ret = client_context.start_replaying() ||
ret = client_context.start_replaying(ws_meta) ||
client_context.apply(wsrep::const_buffer()) ||
client_context.commit();
}