Skip to content

Commit f79b909

Browse files
authored
PYTHON-3453 Fix handling of enterprise auth vars (#1076)
1 parent f3fc409 commit f79b909

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.evergreen/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -494,14 +494,14 @@ functions:
494494
working_dir: "src"
495495
script: |
496496
cat <<EOT > prepare_enterprise_auth.sh
497-
export SASL_HOST=${sasl_host}
498-
export SASL_PORT=${sasl_port}
499-
export SASL_USER=${sasl_user}
500-
export SASL_PASS=${sasl_pass}
501-
export SASL_DB=${sasl_db}
502-
export PRINCIPAL=${principal}
503-
export GSSAPI_DB=${gssapi_db}
504-
export KEYTAB_BASE64=${keytab_base64}
497+
export SASL_HOST='${sasl_host}'
498+
export SASL_PORT='${sasl_port}'
499+
export SASL_USER='${sasl_user}'
500+
export SASL_PASS='${sasl_pass}'
501+
export SASL_DB='${sasl_db}'
502+
export PRINCIPAL='${principal}'
503+
export GSSAPI_DB='${gssapi_db}'
504+
export KEYTAB_BASE64='${keytab_base64}'
505505
EOT
506506
- command: shell.exec
507507
type: test

0 commit comments

Comments
 (0)