fix: async call --checks3

This commit is contained in:
Alex Duan 2024-04-22 11:17:25 +08:00
parent d929bc5f81
commit e262d2cac5
1 changed files with 5 additions and 1 deletions

View File

@ -212,9 +212,12 @@ class TDTestCase(TBase):
taosd = sc.taosdFile(idx) taosd = sc.taosdFile(idx)
cfg = sc.dnodeCfgPath(idx) cfg = sc.dnodeCfgPath(idx)
cmd = f"{taosd} -c {cfg} --checks3" cmd = f"{taosd} -c {cfg} --checks3"
output, error = eos.run(cmd)
eos.exe(cmd)
#output, error = eos.run(cmd)
#print(lines) #print(lines)
'''
tips = [ tips = [
"put object s3test.txt: success", "put object s3test.txt: success",
"listing bucket ci-bucket: success", "listing bucket ci-bucket: success",
@ -226,6 +229,7 @@ class TDTestCase(TBase):
pos = output.find(tip, pos) pos = output.find(tip, pos)
#if pos == -1: #if pos == -1:
# tdLog.exit(f"checks3 failed not found {tip}. cmd={cmd} output={output}") # tdLog.exit(f"checks3 failed not found {tip}. cmd={cmd} output={output}")
'''
# except # except
self.checkExcept() self.checkExcept()