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

Add some more statsd dummy methods

This commit is contained in:
Matthew Jones 2016-01-30 12:05:10 -05:00
parent 96b754c5ec
commit f9f10a4ed7

View File

@ -62,6 +62,12 @@ else:
def __init__(self, *args, **kwargs):
pass
def _prepare(self, stat, value, rate):
pass
def _send_stat(self, stat, value, rate):
pass
def _send(self, *args, **kwargs):
pass
statsd = NoStatsClient()