Skip to content

Commit 5d29b75

Browse files
committed
updates
1 parent 80e941f commit 5d29b75

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

mongo/integration/unified_spec_test.go

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const (
4242
gridFSFiles = "fs.files"
4343
gridFSChunks = "fs.chunks"
4444
spec1403SkipReason = "servers less than 4.2 do not have mongocryptd; see SPEC-1403"
45+
godriver2123SkipReason = "failpoints and timeouts together cause failures; see GODRIVER-2123"
4546
godriver2413SkipReason = "encryptedFields argument is not supported on Collection.Drop; see GODRIVER-2413"
4647
)
4748

@@ -51,10 +52,14 @@ var (
5152
// SPEC-1403: This test checks to see if the correct error is thrown when auto encrypting with a server < 4.2.
5253
// Currently, the test will fail because a server < 4.2 wouldn't have mongocryptd, so Client construction
5354
// would fail with a mongocryptd spawn error.
54-
"operation fails with maxWireVersion < 8": spec1403SkipReason,
55-
"CreateCollection from encryptedFields.": godriver2413SkipReason,
56-
"DropCollection from encryptedFields": godriver2413SkipReason,
57-
"DropCollection from remote encryptedFields": godriver2413SkipReason,
55+
"operation fails with maxWireVersion < 8": spec1403SkipReason,
56+
// GODRIVER-2123: The test below use a failpoint and a socket or server selection timeout.
57+
// The timeout causes the eventual clearing of the failpoint in the test runner to fail with an
58+
// i/o timeout.
59+
"Network error on minPoolSize background creation": godriver2123SkipReason,
60+
"CreateCollection from encryptedFields.": godriver2413SkipReason,
61+
"DropCollection from encryptedFields": godriver2413SkipReason,
62+
"DropCollection from remote encryptedFields": godriver2413SkipReason,
5863
}
5964
)
6065

0 commit comments

Comments
 (0)