Merge branch '2.2' into develop

This commit is contained in:
Johan Wikman
2018-01-11 10:36:15 +02:00
2 changed files with 21 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# MariaDB MaxScale 2.2.1 Release Notes
# MariaDB MaxScale 2.2.1 Release Notes -- 2018-01-11
Release 2.2.1 is a Beta release.

View File

@ -52,6 +52,26 @@ public:
~TestConnections();
/**
* @brief Is the test still ok?
*
* @return True, if no errors have occurred, false otherwise.
*/
bool ok() const
{
return global_result == 0;
}
/**
* @brief Has the test failed?
*
* @return True, if errors have occurred, false otherwise.
*/
bool failed() const
{
return global_result != 0;
}
/**
* @brief global_result Result of test, 0 if PASSED
*/