1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-10-31 18:30:33 +03:00

fix use of the amazon keys

This commit is contained in:
david hill
2016-03-01 14:38:02 -06:00
parent 3eaf5c9aff
commit 71b456438c
10 changed files with 93 additions and 505 deletions

View File

@@ -10069,7 +10069,20 @@ int ProcessManager::setMySQLReplication(oam::DeviceNetworkList devicenetworklist
if ( moduleType == "pm" && PMwithUM == "n" )
continue;
}
//check status, skip if module is offline
int opState = oam::ACTIVE;
bool degraded;
try {
oam.getModuleStatus(remoteModuleName, opState, degraded);
}
catch(...)
{
}
if (opState != oam::ACTIVE)
continue;
ByteStream msg1;
ByteStream::byte requestID = oam::SLAVEREP;
if ( !enable ) {