We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e62bcd commit fcd593dCopy full SHA for fcd593d
examples/documentation_examples/examples_test.go
@@ -120,6 +120,12 @@ func TestCausalConsistencyExamples(t *testing.T) {
120
require.NoError(t, err)
121
defer client.Disconnect(ctx)
122
123
+ // TODO(GODRIVER-2238): Remove skip once failures on MongoDB v4.0 sharded clusters are fixed.
124
+ ver, err := getServerVersion(ctx, client)
125
+ if err != nil || testutil.CompareVersions(t, ver, "4.0") == 0 {
126
+ t.Skip("TODO(GODRIVER-2238): Skip until failures on MongoDB v4.0 sharded clusters are fixed")
127
+ }
128
+
129
err = documentation_examples.CausalConsistencyExamples(client)
130
131
}
0 commit comments