Skip to content

Commit 2add678

Browse files
fix: use consistent quoting in expansion file (#595)
1 parent 3ff7a99 commit 2add678

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
@@ -316,7 +316,7 @@ def run(opts):
316316
# Handle the cluster uri.
317317
uri = resp.get("mongodb_auth_uri", resp["mongodb_uri"])
318318
expansion_yaml.touch()
319-
expansion_yaml.write_text(expansion_yaml.read_text() + f"\nMONGODB_URI: {uri}")
319+
expansion_yaml.write_text(expansion_yaml.read_text() + f'\nMONGODB_URI: "{uri}"')
320320
uri_txt.write_text(uri)
321321
LOGGER.info(f"Cluster URI: {uri}")
322322

0 commit comments

Comments
 (0)