Skip to content

Commit

Permalink
Harcoded tester to localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-kotliar committed Oct 14, 2020
1 parent 0595182 commit 903e7fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cwl_airflow/components/test/conformance.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_listener_thread( # safe to kill wh
port,
daemon
):
httpd = socketserver.TCPServer(("", port), CustomHandler)
httpd = socketserver.TCPServer(("127.0.0.1", port), CustomHandler)
httpd.results_queue = results_queue # to have access to results_queue from CustomHandler through self.server.results_queue
return threading.Thread(
target=httpd.serve_forever,
Expand Down

0 comments on commit 903e7fe

Please sign in to comment.