Skip to content

Commit 5b80b58

Browse files
committed
IS-13: make the propagation delay configurable
Default value (1s) increases the duration of the test suite to approx 1min.
1 parent 10d668d commit 5b80b58

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

nmostesting/suites/IS1301Test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
from ..GenericTest import GenericTest, NMOSTestException
3232

33+
from ..import Config as CONFIG
3334
from ..import TestHelper
3435
import re
3536
import copy
@@ -109,7 +110,7 @@ def set_resource(self, test, url, node_url, value, prev, expected, msg, link):
109110
# TODO: if put_response.status_code == 500:
110111

111112
# pause to accomodate update propagation
112-
time.sleep(0.1)
113+
time.sleep(CONFIG.API_PROCESSING_TIMEOUT)
113114

114115
# re-GET
115116
resp = self.get_resource(url)

0 commit comments

Comments
 (0)