Drop unecessary host="localhost" in https_server fixture to fix CI build (#1367)

This commit is contained in:
Florimond Manca 2020-10-24 23:25:31 +02:00 committed by GitHub
parent 07229b8dff
commit 2f54548dad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -300,7 +300,6 @@ def https_server(cert_pem_file, cert_private_key_file):
lifespan="off",
ssl_certfile=cert_pem_file,
ssl_keyfile=cert_private_key_file,
host="localhost",
port=8001,
loop="asyncio",
)