Skip to content

Commit 9defffc

Browse files
committed
changefeedccl: max changefeed.resolved_timestamp.granularity to 10s
changefeed.resolved_timestamp.granularity was recently made metamorphic, but is causing test flakiness due to timeouts when it is >10s. This PR reduces the max to 10s. Epic: none Fixes: #144956 Fixes: #144948 Fixes: #144934 Release note: none
1 parent 7ae806f commit 9defffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/ccl/changefeedccl/changefeedbase/settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,5 +346,5 @@ var Quantize = settings.RegisterDurationSettingWithExplicitUnit(
346346
settings.ApplicationLevel,
347347
"changefeed.resolved_timestamp.granularity",
348348
"the granularity at which changefeed progress is quantized to make tracking more efficient",
349-
time.Duration(metamorphic.ConstantWithTestRange("changefeed.resolved_timestamp.granularity", 0, 0, 20))*time.Second,
349+
time.Duration(metamorphic.ConstantWithTestRange("changefeed.resolved_timestamp.granularity", 0, 0, 10))*time.Second,
350350
)

0 commit comments

Comments
 (0)