Merge pull request #23192 from taosdata/case/TD-26634-MAIN
case: restore vnode wait sleep from 500ms to 1s (main)
This commit is contained in:
commit
872954ea3f
|
@ -107,8 +107,8 @@ class RestoreBasic:
|
||||||
status = True
|
status = True
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
time.sleep(0.5)
|
time.sleep(1)
|
||||||
tdLog.info(f"sleep 500ms retry {i} to check status again...")
|
tdLog.info(f"sleep 1s retry {i} to check status again...")
|
||||||
|
|
||||||
if status == False:
|
if status == False:
|
||||||
tdLog.exit("check vgroups status failed, exit.")
|
tdLog.exit("check vgroups status failed, exit.")
|
||||||
|
|
Loading…
Reference in New Issue