You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Updated with latest InfiniDB Develop (4.6.6)
This commit is contained in:
@ -442,17 +442,24 @@ int RedistributeControlThread::executeRedistributePlan()
|
||||
bool isActive = false;
|
||||
while (!isActive)
|
||||
{
|
||||
bool noExcept = true;
|
||||
SystemStatus systemstatus;
|
||||
systemstatus.SystemOpState = oam::ACTIVE;
|
||||
try
|
||||
{
|
||||
fControl->fOam->getSystemStatus(systemstatus);
|
||||
}
|
||||
catch (const std::exception& ex)
|
||||
{
|
||||
fErrorMsg += ex.what();
|
||||
noExcept = false;
|
||||
}
|
||||
catch (...)
|
||||
{}
|
||||
{
|
||||
noExcept = false;
|
||||
}
|
||||
|
||||
if ((isActive = (systemstatus.SystemOpState == oam::ACTIVE) == false))
|
||||
sleep(1);
|
||||
if (noExcept && ((isActive = (systemstatus.SystemOpState == oam::ACTIVE)) == false))
|
||||
sleep(1);;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user