Skip to content

Commit

Permalink
fix: change ssl_mode to sslmode
Browse files Browse the repository at this point in the history
  • Loading branch information
rswigginton committed Dec 28, 2023
1 parent 657e526 commit 96a9d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_goose.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main():
ssl_root_cert_path = os.environ.get("MF_METADATA_DB_SSL_ROOT_CERT")

if ssl_mode in ['allow', 'prefer', 'require', 'verify-ca', 'verify-full']:
ssl_query = f'ssl_mode={ssl_mode}'
ssl_query = f'sslmode={ssl_mode}'
if ssl_cert_path is not None:
ssl_query = f'{ssl_query}&sslcert={ssl_cert_path}'
if ssl_key_path is not None:
Expand Down

0 comments on commit 96a9d38

Please sign in to comment.