Fix log source issue of Public and Service category

Change-Id: I54282df97942c30c413dcdd9a8cd00c22cdd6bc0
This commit is contained in:
Yash Murty 2018-06-21 09:43:17 +00:00
parent 4daebba9fa
commit 11ce1c9c19
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ try:
if x.strip()])
def sanitize_ips(line_data):
for x in ['lb_ip', 'client_ip', 'log_source']:
for x in ['lb_ip', 'client_ip']:
if line_data[x] == '-':
line_data[x] = '0.0.0.0'
except ImportError: