fix: change delay 120s to wait stream result
This commit is contained in:
parent
8a2760e4d0
commit
3573eddd87
|
@ -90,7 +90,7 @@ class TDTestCase(TBase):
|
||||||
def checkStreamCorrect(self):
|
def checkStreamCorrect(self):
|
||||||
sql = f"select count(*) from {self.db}.stm1"
|
sql = f"select count(*) from {self.db}.stm1"
|
||||||
count = 0
|
count = 0
|
||||||
for i in range(30):
|
for i in range(120):
|
||||||
tdSql.query(sql)
|
tdSql.query(sql)
|
||||||
count = tdSql.getData(0, 0)
|
count = tdSql.getData(0, 0)
|
||||||
if count == 100000 or count == 100001:
|
if count == 100000 or count == 100001:
|
||||||
|
|
Loading…
Reference in New Issue