You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-25 20:23:16 +03:00
Merge branch 'develop-1.1' into dev-merge-up-20180409
This commit is contained in:
@@ -594,7 +594,10 @@ static void alarmMessageThread(Configuration config)
|
||||
msg = fIos.read();
|
||||
|
||||
if (msg.length() <= 0)
|
||||
{
|
||||
fIos.close();
|
||||
continue;
|
||||
}
|
||||
|
||||
//log.writeLog(__LINE__, "MSG RECEIVED: Process Alarm Message");
|
||||
|
||||
@@ -626,16 +629,20 @@ static void alarmMessageThread(Configuration config)
|
||||
|
||||
ALARMManager aManager;
|
||||
aManager.processAlarmReport(calAlarm);
|
||||
|
||||
fIos.close();
|
||||
}
|
||||
catch (exception& ex)
|
||||
{
|
||||
string error = ex.what();
|
||||
log.writeLog(__LINE__, "EXCEPTION ERROR on read for ProcMgr_Alarm:" + error, LOG_TYPE_ERROR);
|
||||
fIos.close();
|
||||
continue;
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
log.writeLog(__LINE__, "EXCEPTION ERROR on read for ProcMgr_Alarm: Caught unknown exception!", LOG_TYPE_ERROR);
|
||||
fIos.close();
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user