From 6f88dbd0d2aa261a2eb51f76e908da1fdba8e389 Mon Sep 17 00:00:00 2001 From: iwysiu Date: Fri, 30 Apr 2021 16:37:06 -0400 Subject: [PATCH] GODRIVER-1938 update mongocryptd serverSelectionTimeout to 10 seconds --- mongo/mongocryptd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongo/mongocryptd.go b/mongo/mongocryptd.go index c88674cc1f..2eab62f971 100644 --- a/mongo/mongocryptd.go +++ b/mongo/mongocryptd.go @@ -19,7 +19,7 @@ import ( ) const ( - defaultServerSelectionTimeout = 1 * time.Second + defaultServerSelectionTimeout = 10 * time.Second defaultURI = "mongodb://localhost:27020" defaultPath = "mongocryptd" serverSelectionTimeoutStr = "server selection error"