Merge pull request #4892 from taosdata/hotfix/TD-2657

[TD-2657]add max wait time to fix case fail issue
This commit is contained in:
haojun Liao 2021-01-14 11:13:59 +08:00 committed by GitHub
commit 37d80c7851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class TDTestCase:
tdLog.info("=============== step3")
start = time.time()
tdSql.waitedQuery("select * from st", 1, 120)
delay = int(time.time() - start) + 20
delay = int(time.time() - start) + 80
v = tdSql.getData(0, 3)
if v >= 51:
tdLog.exit("value is %d, which is larger than 51" % v)