Skip to content

Commit

Permalink
More increased timeouts for GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Oct 19, 2023
1 parent 4449af1 commit a9aae08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/csapi/apidoc_room_state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func TestRoomState(t *testing.T) {
})

authedClient.MustDo(t, "GET", []string{"_matrix", "client", "v3", "publicRooms"},
client.WithRetryUntil(time.Second, func(res *http.Response) bool {
client.WithRetryUntil(3*time.Second, func(res *http.Response) bool {
foundRoom := false

must.MatchResponse(t, res, match.HTTPResponse{
Expand Down
2 changes: 1 addition & 1 deletion tests/msc3902/federation_room_join_partial_state_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ func TestPartialStateJoin(t *testing.T) {
psjResult.Server.MustSendTransaction(t, deployment, "hs1", []json.RawMessage{event1.JSON(), event2.JSON()}, nil)

// wait for the homeserver to persist the event.
awaitEventArrival(t, 2*time.Second, alice, serverRoom.RoomID, event2.EventID())
awaitEventArrival(t, 5*time.Second, alice, serverRoom.RoomID, event2.EventID())

// do a gappy sync which only picks up the second message.
syncRes, _ := alice.MustSync(t,
Expand Down

0 comments on commit a9aae08

Please sign in to comment.