Bind to :: instead of 0.0.0.0 in log streamer

Change-Id: Ie0628318368af556b6edd40acd77a7267a17a2b8
This commit is contained in:
Monty Taylor 2017-09-12 13:58:32 -06:00
parent 25796c229c
commit 118db8f54b
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class Executor(zuul.cmd.ZuulApp):
self.log.info("Starting log streamer")
streamer = zuul.lib.log_streamer.LogStreamer(
self.user, '0.0.0.0', self.finger_port, self.job_dir)
self.user, '::', self.finger_port, self.job_dir)
# Keep running until the parent dies:
pipe_read = os.fdopen(pipe_read)