Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(pubsub): increase ordering key test timeout #4584

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions pubsub/integration_test.go
Expand Up @@ -1188,7 +1188,6 @@ func TestIntegration_OrderedKeys_Basic(t *testing.T) {
}

func TestIntegration_OrderedKeys_JSON(t *testing.T) {
t.Skip("https://github.com/googleapis/google-cloud-go/issues/3626")
ctx := context.Background()
client := integrationTestClient(ctx, t, option.WithEndpoint("us-west1-pubsub.googleapis.com:443"))
defer client.Close()
Expand Down Expand Up @@ -1283,8 +1282,8 @@ func TestIntegration_OrderedKeys_JSON(t *testing.T) {

select {
case <-done:
case <-time.After(60 * time.Second):
t.Fatal("timed out after 60s waiting for all messages to be received")
case <-time.After(5 * time.Minute):
t.Fatal("timed out after 5m waiting for all messages to be received")
}

mu.Lock()
Expand Down