1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Fix up another statsd formatting error

This commit is contained in:
Matthew Jones 2016-02-02 14:25:56 -05:00
parent fb4cad9838
commit 7ab839c17f

View File

@ -212,7 +212,7 @@ class BaseCallbackModule(object):
def _log_event(self, event, **event_data):
if self.callback_consumer_port:
with statsd.timer('zmq_post_event_msg.{}'.format(event)):
with statsd.timer('zmq_post_event_msg.{0}'.format(event)):
self._post_job_event_queue_msg(event, event_data)
else:
self._post_rest_api_event(event, event_data)