Commit a4311792 authored by Łukasz Nowak's avatar Łukasz Nowak Committed by Łukasz Nowak

caddy-frontend: Fix backend_https_url

The schema shall be https, not http. It got undetected, as caddy-frontend
dies really fast with 501, while apache-frontend is able to communicate
with the backend.
parent 842e841a
......@@ -360,7 +360,7 @@ class SlaveHttpFrontendTestCase(HttpFrontendTestCase):
cls.backend_url = 'http://%s:%s' % server.server_address
cls.server_process = multiprocessing.Process(target=server.serve_forever)
cls.server_process.start()
cls.backend_https_url = 'http://%s:%s' % server_https.server_address
cls.backend_https_url = 'https://%s:%s' % server_https.server_address
cls.server_https_process = multiprocessing.Process(
target=server_https.serve_forever)
cls.server_https_process.start()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment