MXS-2169 Allow a downed server to be selected as topology master
This is required for the case when MaxScale is started when the master is already down.
This commit is contained in:
@ -32,3 +32,14 @@ void DelimitedPrinter::cat(string& target, const string& addition)
|
||||
target += m_current_separator + addition;
|
||||
m_current_separator = m_separator;
|
||||
}
|
||||
|
||||
void DelimitedPrinter::cat(const std::string& addition)
|
||||
{
|
||||
cat(m_message, addition);
|
||||
m_current_separator = m_separator;
|
||||
}
|
||||
|
||||
std::string DelimitedPrinter::message() const
|
||||
{
|
||||
return m_message;
|
||||
}
|
Reference in New Issue
Block a user