remove test bugs

This commit is contained in:
Lucas Armand
2025-11-11 18:13:46 -08:00
parent 0b14562a63
commit a47c9d1ed0
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -18,7 +18,6 @@ def start_server(backend: Backend, routes: List[web.RouteDef], **kwargs):
use_ssl = os.environ.get("USE_SSL", "false") == "true"
if use_ssl is True:
ssl_context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
raise Exception("Oh no the SSL cert is gone!")
ssl_context.load_cert_chain(
certfile="/etc/instance.crt",
keyfile="/etc/instance.key",
-1
View File
@@ -127,5 +127,4 @@ routes = [
]
if __name__ == "__main__":
blips = blorps
start_server(backend, routes)