You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
mcol-943 - fixed a read error log
This commit is contained in:
@@ -2223,7 +2223,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos)
|
|||||||
catch (exception& ex)
|
catch (exception& ex)
|
||||||
{
|
{
|
||||||
string error = ex.what();
|
string error = ex.what();
|
||||||
log.writeLog(__LINE__, "***read error, close create thread: " + error, LOG_TYPE_DEBUG);
|
// log.writeLog(__LINE__, "***read error, close create thread: " + error, LOG_TYPE_DEBUG);
|
||||||
fIos->close();
|
fIos->close();
|
||||||
delete fIos;
|
delete fIos;
|
||||||
delete msg;
|
delete msg;
|
||||||
@@ -2232,7 +2232,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos)
|
|||||||
}
|
}
|
||||||
catch(...)
|
catch(...)
|
||||||
{
|
{
|
||||||
log.writeLog(__LINE__, "***read error, close create thread", LOG_TYPE_DEBUG);
|
// log.writeLog(__LINE__, "***read error, close create thread", LOG_TYPE_DEBUG);
|
||||||
fIos->close();
|
fIos->close();
|
||||||
delete fIos;
|
delete fIos;
|
||||||
delete msg;
|
delete msg;
|
||||||
@@ -2241,7 +2241,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (msg->length() <= 0) {
|
if (msg->length() <= 0) {
|
||||||
log.writeLog(__LINE__, "***0 bytes, close create thread", LOG_TYPE_DEBUG);
|
// log.writeLog(__LINE__, "***0 bytes, close create thread", LOG_TYPE_DEBUG);
|
||||||
fIos->close();
|
fIos->close();
|
||||||
delete fIos;
|
delete fIos;
|
||||||
delete msg;
|
delete msg;
|
||||||
|
Reference in New Issue
Block a user