We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8213f2b commit fc4e7e5Copy full SHA for fc4e7e5
.evergreen/scripts/setup-tests.py
@@ -168,7 +168,7 @@ def handle_test_env() -> None:
168
LOGGER.info("Writing keytab")
169
keytab = base64.b64decode(os.environ["KEYTAB_BASE64"])
170
keytab_file = ROOT / ".evergreen/drivers.keytab"
171
- with keytab_file.open("w", newline="\n") as fid:
+ with keytab_file.open("wb", newline="\n") as fid:
172
fid.write(keytab)
173
principal = os.environ["PRINCIPAL"]
174
LOGGER.info("Running kinit")
0 commit comments