Skip to content

Commit 401cae2

Browse files
authored
Extend catchpoint wait for round timeout from 10 to 60 milliseconds. (#2231)
Extend catchpoint test next round timeout from 10 to 60 seconds to try to avoid test failure.
1 parent 7e2f656 commit 401cae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e-go/features/catchup/catchpointCatchup_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ func TestBasicCatchpointCatchup(t *testing.T) {
220220
targetRound = uint64(37)
221221
log.Infof("Second node catching up to round 36")
222222
for {
223-
err = fixture.ClientWaitForRound(secondNodeRestClient, currentRound, 10000*time.Millisecond)
223+
err = fixture.ClientWaitForRound(secondNodeRestClient, currentRound, 60*time.Second)
224224
a.NoError(err)
225225
if targetRound <= currentRound {
226226
break

0 commit comments

Comments
 (0)