Merge branch '3.0' into cpwu/3.0

This commit is contained in:
cpwu 2022-05-27 16:37:23 +08:00
commit b5734de614
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ class TDTestCase:
remaindrowcnt = parameterDict["rowsPerTbl"] * (parameterDict["ctbNum"] - dropTblNum)
if not (totalConsumeRows < expectrowcnt and totalConsumeRows > remaindrowcnt):
if not (totalConsumeRows <= expectrowcnt and totalConsumeRows >= remaindrowcnt):
tdLog.info("act consume rows: %d, expect consume rows: between %d and %d"%(totalConsumeRows, remaindrowcnt, expectrowcnt))
tdLog.exit("tmq consume rows error!")