You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Merge branch 'develop-1.1' into 1.1-merge-up-20180621
This commit is contained in:
@ -781,11 +781,11 @@ int main(int argc, char** argv)
|
||||
if ( ret != 0 )
|
||||
log.writeLog(__LINE__, "pthread_create failed, return code = " + oam.itoa(ret), LOG_TYPE_ERROR);
|
||||
|
||||
//mysql status monitor thread
|
||||
if ( ( config.ServerInstallType() != oam::INSTALL_COMBINE_DM_UM_PM ) ||
|
||||
(PMwithUM == "y") )
|
||||
//mysqld status monitor thread
|
||||
if ( config.moduleType() == "um" ||
|
||||
( config.moduleType() == "pm" && config.ServerInstallType() == oam::INSTALL_COMBINE_DM_UM_PM ) ||
|
||||
( config.moduleType() == "pm" && PMwithUM == "y") )
|
||||
{
|
||||
|
||||
pthread_t mysqlThread;
|
||||
ret = pthread_create (&mysqlThread, NULL, (void* (*)(void*)) &mysqlMonitorThread, NULL);
|
||||
|
||||
@ -1233,7 +1233,7 @@ static void mysqlMonitorThread(MonitorConfig config)
|
||||
catch (...)
|
||||
{}
|
||||
|
||||
sleep(10);
|
||||
sleep(5);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user