Skip to content

Commit

Permalink
Minor format change.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeichikawasalesforce committed Jun 19, 2024
1 parent 8adedbd commit 5b77032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabpy/tabpy_server/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _initialize_ssl_context(self):
keyfile=self.settings[SettingsParameters.KeyFile]
)

min_tls = self.settings.get(SettingsParameters.MinimumTLSVersion)
min_tls = self.settings[SettingsParameters.MinimumTLSVersion]
if not hasattr(ssl.TLSVersion, min_tls):
logger.warning(f"Unrecognized value for TABPY_MINIMUM_TLS_VERSION: {min_tls}")
min_tls = "TLSv1_2"
Expand Down

0 comments on commit 5b77032

Please sign in to comment.