We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd8ad3b commit b900f49Copy full SHA for b900f49
1 file changed
tests/integration/test_storage_s3_queue/test_5.py
@@ -470,6 +470,7 @@ def test_failure_in_the_middle(started_cluster):
470
additional_settings={
471
"keeper_path": keeper_path,
472
"s3queue_loading_retries": 10000,
473
+ "polling_max_timeout_ms": 100,
474
},
475
)
476
values = []
@@ -526,7 +527,7 @@ def check_failpoint():
526
527
528
529
finally:
- started_cluster.instances["instance"].query(
530
+ node.query(
531
f"SYSTEM DISABLE FAILPOINT object_storage_queue_fail_in_the_middle_of_file"
532
533
@@ -536,7 +537,7 @@ def get_count():
536
537
assert 0 == get_count()
538
539
processed = False
- for _ in range(40):
540
+ for _ in range(50):
541
node.query("SYSTEM FLUSH LOGS")
542
processed = int(
543
node.query(
0 commit comments