You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.Fatal("You must set your 'MONGODB_URI' environment variable. See\n\t https://www.mongodb.com/docs/drivers/go/current/usage-examples/#environment-variable")
16
+
}
17
+
18
+
// start-retryable-example
19
+
// Defines the client options
20
+
clientOps:=options.Client().
21
+
ApplyURI(uri).
22
+
SetRetryWrites(false).
23
+
SetRetryReads(false)
24
+
25
+
// Creates a new client using the specified options
0 commit comments