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

Revert "codership/mariadb-wsrep#27 Galera cache encryption fixup"

This reverts commit 043e8bc2ea.
This commit is contained in:
Teemu Ollakka
2019-01-21 14:12:10 +02:00
parent 043e8bc2ea
commit 476bcdb41e
7 changed files with 10 additions and 15 deletions

View File

@ -335,15 +335,14 @@ static int apply_toi(wsrep::provider& provider,
//////////////////////////////////////////////////////////////////////////////
int wsrep::server_state::load_provider(const std::string& provider_spec,
const std::string& provider_options,
bool const encrypt)
const std::string& provider_options)
{
wsrep::log_info() << "Loading provider "
<< provider_spec
<< "initial position: "
<< initial_position_;
provider_ = wsrep::provider::make_provider(
*this, provider_spec, provider_options, encrypt);
*this, provider_spec, provider_options);
return (provider_ ? 0 : 1);
}