Merge "Change the tempest test interval to 2s."

This commit is contained in:
Jenkins 2017-06-02 01:19:22 +00:00 committed by Gerrit Code Review
commit 3d2ddee2d6

View File

@ -13,7 +13,7 @@
import time
def wait_for_condition(condition, interval=1, timeout=60):
def wait_for_condition(condition, interval=2, timeout=60):
start_time = time.time()
end_time = time.time() + timeout
while time.time() < end_time: