Skip to content

Commit

Permalink
fix: remove comma causing sslkey=(None,) when MF_METADATA_DB_SSL_KEY_…
Browse files Browse the repository at this point in the history
…PATH not defined
  • Loading branch information
rswigginton committed Dec 29, 2023
1 parent 96a9d38 commit 7e10e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def __init__(self,
self._database_name = os.environ.get(prefix + "NAME", database_name)
self._ssl_mode = os.environ.get(prefix + "SSL_MODE", ssl_mode)
self._ssl_cert_path = os.environ.get(prefix + "SSL_CERT_PATH", ssl_cert_path)
self._ssl_key_path = os.environ.get(prefix + "SSL_KEY_PATH", ssl_key_path),
self._ssl_key_path = os.environ.get(prefix + "SSL_KEY_PATH", ssl_key_path)
self._ssl_root_cert_path = os.environ.get(prefix + "SSL_ROOT_CERT_PATH", ssl_root_cert_path)
conn_str_required_values = [
self._host,
Expand Down

0 comments on commit 7e10e49

Please sign in to comment.