Comment 13 for bug 1208493

Revision history for this message
Raghavendra D Prabhu (raghavendra-prabhu) wrote :

The " 131212 15:51:41 [ERROR] WSREP: Failed to get provider
options" may be normal for 'none' provider. So, that is fine.

Now, regarding partial restore of options, ie. without gmcast,
pc, etc. may be due to

char* wsrep_get_params(const galera::Replicator& repl)
{
    std::ostringstream os;
    os << repl.params();
    return strdup(os.str().c_str());
}

a) Only a few parameters are restored.

b) The ones restored are different from the ones set earlier in
my.cnf (I tested this by adding repl.commit_order in cnf).