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:
Alex Duan 2023-10-10 04:34:06 -05:00 committed by GitHub
commit 872954ea3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -107,8 +107,8 @@ class RestoreBasic:
status = True
break
else:
time.sleep(0.5)
tdLog.info(f"sleep 500ms retry {i} to check status again...")
time.sleep(1)
tdLog.info(f"sleep 1s retry {i} to check status again...")
if status == False:
tdLog.exit("check vgroups status failed, exit.")