[skip e2e] Improve annotation (#14801)

Signed-off-by: Xieql <qianglong.xie@zilliz.com>
pull/14829/head
Xieql 2022-01-05 10:37:24 +08:00 committed by GitHub
parent 12f37ffb57
commit ce3742835f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class TestChaosData:
chaos_res.create(chaos_config)
log.info("Chaos injected")
# convert string duration time to a int number in seconds
# convert string duration time to an int number in seconds
if isinstance(duration, str):
duration = duration.replace('h', '*3600+').replace('m', '*60+').replace('s', '*1+') + '+0'
else: