We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab8f15 commit 475502fCopy full SHA for 475502f
mongo/integration/mtest/mongotest.go
@@ -586,6 +586,9 @@ func (t *T) TrackFailPoint(fpName string) {
586
587
// ClearFailPoints disables all previously set failpoints for this test.
588
func (t *T) ClearFailPoints() {
589
+ if t.clientOpts != nil && t.clientOpts.AutoEncryptionOptions != nil {
590
+ t.Logf("configureFailPoint is not supported for auto encryption %v", t.failPointNames)
591
+ }
592
db := t.Client.Database("admin")
593
for _, fp := range t.failPointNames {
594
cmd := bson.D{
0 commit comments