mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-24 10:42:31 +03:00
Some methods in wsrep-lib still hide/ignore return codes from provider
which complicates diagnostics and debugging. Don't ignore provider return codes and more verbose error logging for sst_sent(), sst_received(), set_encryption_key() methods Refs codership/wsrep-lib#127
This commit is contained in:
@ -82,9 +82,9 @@ namespace wsrep
|
||||
causal_read(int) const;
|
||||
enum wsrep::provider::status wait_for_gtid(const wsrep::gtid&, int) const;
|
||||
wsrep::gtid last_committed_gtid() const;
|
||||
int sst_sent(const wsrep::gtid&,int);
|
||||
int sst_received(const wsrep::gtid& gtid, int);
|
||||
int enc_set_key(const wsrep::const_buffer& key);
|
||||
enum wsrep::provider::status sst_sent(const wsrep::gtid&, int);
|
||||
enum wsrep::provider::status sst_received(const wsrep::gtid& gtid, int);
|
||||
enum wsrep::provider::status enc_set_key(const wsrep::const_buffer& key);
|
||||
std::vector<status_variable> status() const;
|
||||
void reset_status();
|
||||
std::string options() const;
|
||||
|
Reference in New Issue
Block a user