Skip to content

Commit

Permalink
revert changes in config
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikhex committed Mar 11, 2025
1 parent 6717aa8 commit 54fc797
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions uvicorn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ def __init__(
self.callback_notify = callback_notify
self.ssl_keyfile = ssl_keyfile
self.ssl_certfile = ssl_certfile
self.ssl_cert_pem: str | None = None
self.ssl_keyfile_password = ssl_keyfile_password
self.ssl_version = ssl_version
self.ssl_cert_reqs = ssl_cert_reqs
Expand Down Expand Up @@ -408,8 +407,6 @@ def load(self) -> None:
ca_certs=self.ssl_ca_certs,
ciphers=self.ssl_ciphers,
)
with open(self.ssl_certfile) as file:
self.ssl_cert_pem = file.read()
else:
self.ssl = None

Expand Down

0 comments on commit 54fc797

Please sign in to comment.