Skip to content

Commit

Permalink
adding statsd dep
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed May 19, 2017
1 parent db215b1 commit fb4846a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-reqs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ psycopg2
pylint
pythrifthiveapi
pyyaml
statsd
# Also install everything we need to build Sphinx docs
-r dev-reqs-for-docs.txt
2 changes: 2 additions & 0 deletions superset/stats_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ def decr(self, key):
self.client.decr(key)

def gauge(self, key):
# pylint: disable=no-value-for-parameter
self.client.gauge(key)

except Exception as e:
pass

0 comments on commit fb4846a

Please sign in to comment.