remove some un necessary logs
This commit is contained in:
parent
5506dbe136
commit
eb6be38711
|
@ -128,7 +128,6 @@ int mgmtProcessVPeersRsp(char *msg, int msgLen, SDnodeObj *pObj) {
|
|||
}
|
||||
|
||||
if (pDb->vgStatus != TSDB_VG_STATUS_IN_PROGRESS) {
|
||||
mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus);
|
||||
mTrace("dnode:%s, db:%s vpeer rsp already disposed, vgroup status:%d code:%d", taosIpStr(pObj->privateIp), pRsp->more, pDb->vgStatus, pRsp->code);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -618,7 +618,6 @@ int mgmtCreateMeter(SDbObj *pDb, SCreateTableMsg *pCreate) {
|
|||
if (pDb->vgStatus == TSDB_VG_STATUS_IN_PROGRESS) {
|
||||
mgmtDestroyMeter(pMeter);
|
||||
mTrace("table:%s, vgroup in creating progress", pCreate->meterId);
|
||||
mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus);
|
||||
return TSDB_CODE_ACTION_IN_PROGRESS;
|
||||
}
|
||||
|
||||
|
@ -645,7 +644,6 @@ int mgmtCreateMeter(SDbObj *pDb, SCreateTableMsg *pCreate) {
|
|||
mgmtCreateVgroup(pDb);
|
||||
mgmtDestroyMeter(pMeter);
|
||||
mTrace("table:%s, vgroup malloced, wait for create progress finished", pCreate->meterId);
|
||||
mTrace("===> pDb:%s %p status:%d", pDb->name, pDb, pDb->vgStatus);
|
||||
return TSDB_CODE_ACTION_IN_PROGRESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue