MXS-1775 Change MonitorInstance::configure() prototype

Now return boolean, to allow derived class to signal a failure
to configure.
This commit is contained in:
Johan Wikman
2018-05-25 14:06:06 +03:00
parent 0783af88ed
commit 9b7e37e112
12 changed files with 45 additions and 32 deletions

View File

@ -47,8 +47,9 @@ json_t* NDBCMonitor::diagnostics_json() const
return NULL;
}
void NDBCMonitor::configure(const MXS_CONFIG_PARAMETER* params)
bool NDBCMonitor::configure(const MXS_CONFIG_PARAMETER* params)
{
return true;
}
bool NDBCMonitor::has_sufficient_permissions() const

View File

@ -32,7 +32,7 @@ public:
json_t* diagnostics_json() const;
protected:
void configure(const MXS_CONFIG_PARAMETER* params);
bool configure(const MXS_CONFIG_PARAMETER* params);
bool has_sufficient_permissions() const;
void update_server_status(MXS_MONITORED_SERVER* monitored_server);