Skip to content

Commit db26171

Browse files
rafissclaude
andcommitted
sql: increase timeout in TestIndexBackfillerResumePreservesProgress
This increases all three timeouts in the test from 5 seconds to 30 seconds Resolves: #155646 Release note: None 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 76bb21a commit db26171

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/sql/indexbackfiller_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ func TestIndexBackfillerResumePreservesProgress(t *testing.T) {
668668
return err
669669
}
670670
return nil
671-
}, 5*time.Second)
671+
}, 30*time.Second)
672672

673673
ensureJobState := func(targetState string) {
674674
testutils.SucceedsWithin(t, func() error {
@@ -682,7 +682,7 @@ func TestIndexBackfillerResumePreservesProgress(t *testing.T) {
682682
targetState, jobState)
683683
}
684684
return nil
685-
}, 5*time.Second)
685+
}, 30*time.Second)
686686
}
687687

688688
var completedSpans roachpb.SpanGroup
@@ -738,7 +738,7 @@ func TestIndexBackfillerResumePreservesProgress(t *testing.T) {
738738
}
739739

740740
return nil
741-
}, 5*time.Second)
741+
}, 30*time.Second)
742742
}
743743

744744
for isBlockingBackfillProgress.Load() {

0 commit comments

Comments
 (0)