Skip to content

Commit

Permalink
GODRIVER-3181 Read server responses in the background after op timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewdale committed Jul 24, 2024
1 parent ee88719 commit a3c6daa
Show file tree
Hide file tree
Showing 10 changed files with 774 additions and 17 deletions.
2 changes: 1 addition & 1 deletion internal/integration/collection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1582,7 +1582,7 @@ func TestCollection(t *testing.T) {
_, err := mt.Coll.Indexes().CreateOne(context.TODO(), indexModel)
assert.NoError(mt, err, "failed to create index")

_, err = mt.Coll.Indexes().DropOne(context.Background(), "username_1")
err = mt.Coll.Indexes().DropOne(context.Background(), "username_1")
assert.NoError(mt, err)
})
})
Expand Down
Loading

0 comments on commit a3c6daa

Please sign in to comment.