Skip to content

Commit ded91ae

Browse files
ggevayclaude
andcommitted
parallel-workload: quote the hedged-get delay flag's duration values
FlipFlags interpolates flag values into ALTER SYSTEM SET unquoted, so duration-valued flags carry pre-quoted values in flags_with_values (as persist_state_update_lease_timeout already does). The unquoted 10ms value made every parallel-workload Nightly variant fail with a parse error as soon as the flipper picked the delay flag. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Ceufn9nP1RbEJCtww1Ww8i
1 parent 1a8ab35 commit ded91ae

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • misc/python/materialize/parallel_workload

misc/python/materialize/parallel_workload/action.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2799,7 +2799,11 @@ def __init__(
27992799
"16",
28002800
]
28012801
self.flags_with_values["persist_blob_hedged_get_enabled"] = BOOLEAN_FLAG_VALUES
2802-
self.flags_with_values["persist_blob_hedged_get_delay"] = ["0s", "10ms", "2s"]
2802+
self.flags_with_values["persist_blob_hedged_get_delay"] = [
2803+
"'0s'",
2804+
"'10ms'",
2805+
"'2s'",
2806+
]
28032807
self.flags_with_values["enable_variadic_left_join_lowering"] = (
28042808
BOOLEAN_FLAG_VALUES
28052809
)

0 commit comments

Comments
 (0)