We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4f64fd commit e1ce780Copy full SHA for e1ce780
smoke-test/tests/consistency_utils.py
@@ -27,15 +27,13 @@ def infer_kafka_broker_container() -> str:
27
return lines[0]
28
29
30
-KAFKA_BROKER_CONTAINER: str = str(
31
- os.getenv("KAFKA_BROKER_CONTAINER", infer_kafka_broker_container())
32
-)
33
-
34
35
def wait_for_writes_to_sync(max_timeout_in_sec: int = 120) -> None:
36
if USE_STATIC_SLEEP:
37
time.sleep(ELASTICSEARCH_REFRESH_INTERVAL_SECONDS)
38
return
+ KAFKA_BROKER_CONTAINER: str = str(
+ os.getenv("KAFKA_BROKER_CONTAINER", infer_kafka_broker_container())
+ )
39
start_time = time.time()
40
# get offsets
41
lag_zero = False
0 commit comments