Fix typo in localhost check in zuul streamer

There is a typo causing the match against localhost to fail
potentionally.

Change-Id: I9f8375a8dd306dbc7ac9019d227514d2f6ea3bd2
This commit is contained in:
Tobias Henkel 2017-06-20 13:08:18 +02:00
parent a9dcf45a1c
commit 7dc938173e
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class CallbackModule(default.CallbackModule):
hosts = self._get_task_hosts(task)
for host in hosts:
if host in ('locahost', '127.0.0.1'):
if host in ('localhost', '127.0.0.1'):
# Don't try to stream from localhost
continue
ip = play_vars[host].get(