Skip to content

Commit 580dc7d

Browse files
authored
DRIVERS-3032 Fix handling of SSL variable (#582)
1 parent 20a7868 commit 580dc7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/orchestration/drivers_orchestration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def get_options():
109109
if env_var == "AUTH":
110110
opts.auth = os.environ.get("AUTH") == "auth"
111111
elif env_var == "SSL":
112-
opts.ssl = os.environ.get("SSL") == "ssl"
112+
opts.ssl = os.environ.get("SSL", "nossl") != "nossl"
113113
elif isinstance(getattr(opts, key), bool):
114114
if os.environ[env_var]:
115115
setattr(opts, key, True)

0 commit comments

Comments
 (0)