fix: change delay 120s to wait stream result

This commit is contained in:
Alex Duan 2024-01-14 16:42:59 +08:00
parent 8a2760e4d0
commit 3573eddd87
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class TDTestCase(TBase):
def checkStreamCorrect(self):
sql = f"select count(*) from {self.db}.stm1"
count = 0
for i in range(30):
for i in range(120):
tdSql.query(sql)
count = tdSql.getData(0, 0)
if count == 100000 or count == 100001: