Skip to content

Commit dd48d43

Browse files
committed
Assert the new cap-gap config key is honored
WsSenderConfigHonoredTest enforces that every key registered in ConfigSchema is actually plumbed through to the sender. The new catchup_cap_gap_min_escalation_window_millis key needed its assertion.
1 parent 017652f commit dd48d43

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

core/src/test/java/io/questdb/client/test/impl/WsSenderConfigHonoredTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ public void testEveryIngressKeyIsHonored() {
7575
assertHonored("max_background_drainers=6", "max_background_drainers", 6);
7676
assertHonored("max_frame_rejections=6", "max_frame_rejections", 6);
7777
assertHonored("poison_min_escalation_window_millis=7500", "poison_min_escalation_window_millis", 7500L);
78+
assertHonored("catchup_cap_gap_min_escalation_window_millis=90000",
79+
"catchup_cap_gap_min_escalation_window_millis", 90000L);
7880
assertHonored("error_inbox_capacity=128", "error_inbox_capacity", 128);
7981
assertHonored("connection_listener_inbox_capacity=64", "connection_listener_inbox_capacity", 64);
8082
assertHonored("token=ey.abc", "token", "ey.abc");

0 commit comments

Comments
 (0)