mirror of https://github.com/zulip/zulip.git
middleware: Fix str/unicode type mismatch in statsd_path.
This commit is contained in:
parent
2436ad19ba
commit
10f15a2d00
|
@ -90,7 +90,7 @@ def write_log_line(log_data, path, method, remote_ip, email, client_name,
|
||||||
|
|
||||||
# For statsd timer name
|
# For statsd timer name
|
||||||
if path == '/':
|
if path == '/':
|
||||||
statsd_path = 'webreq'
|
statsd_path = u'webreq'
|
||||||
else:
|
else:
|
||||||
statsd_path = u"webreq.%s" % (path[1:].replace('/', '.'),)
|
statsd_path = u"webreq.%s" % (path[1:].replace('/', '.'),)
|
||||||
# Remove non-ascii chars from path (there should be none, if there are it's
|
# Remove non-ascii chars from path (there should be none, if there are it's
|
||||||
|
|
Loading…
Reference in New Issue