Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Galera documentation in http://galeracluster.com/documentation-webpages/galeraparameters.html#pc-wait-prim-timeout states that pc.wait_prim and pc.wait_prim_timeout can be given as parameters in wsrep_provider_options. However, according to code
pc.wait_prim
pc.wait_prim_timeout
wsrep_provider_options
bool wait_prim( gu::from_string<bool>( uri_.get_option(Conf::PcWaitPrim, Defaults::PcWaitPrim))); const gu::datetime::Period wait_prim_timeout( gu::from_string<gu::datetime::Period>( uri_.get_option(Conf::PcWaitPrimTimeout, Defaults::PcWaitPrimTimeout)));
this is not so.
The text was updated successfully, but these errors were encountered:
Perhaps this also explains why the invalid default value "P30S" for pc.wait_prim_timeout is tolerated. I guess it would otherwise be "PT30S".
Sorry, something went wrong.
hi, when will this be fixed? I need to configure pc.wait_prim_timeout.
Pushed and released.
temeo
No branches or pull requests
Galera documentation in http://galeracluster.com/documentation-webpages/galeraparameters.html#pc-wait-prim-timeout states that
pc.wait_primandpc.wait_prim_timeoutcan be given as parameters inwsrep_provider_options. However, according to codethis is not so.
The text was updated successfully, but these errors were encountered: