mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
log-search: Some Django log lines do not include hostname.
This commit is contained in:
committed by
Tim Abbott
parent
fe17a4d6d0
commit
e3a65b1528
@@ -313,7 +313,9 @@ def print_line(
|
|||||||
url = f"{BOLD}{match['path']}"
|
url = f"{BOLD}{match['path']}"
|
||||||
if filter_type != FilterType.HOSTNAME:
|
if filter_type != FilterType.HOSTNAME:
|
||||||
hostname = match["hostname"]
|
hostname = match["hostname"]
|
||||||
if not args.nginx:
|
if hostname is None:
|
||||||
|
hostname = "???.zulipchat.com"
|
||||||
|
elif not args.nginx:
|
||||||
if hostname == "root":
|
if hostname == "root":
|
||||||
hostname = "zulip.com"
|
hostname = "zulip.com"
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user