twitter-archive / commons

Twitter common libraries for python and the JVM (deprecated)
http://twitter.github.com/commons
Other
2.1k stars 565 forks source link

bug in commons/src/java/com/twitter/common/metrics/Metrics.java #413

Open abel123 opened 8 years ago

abel123 commented 8 years ago

commons/src/java/com/twitter/common/metrics/Metrics.java

line 39 if (gauges.containsKey(key) || counters.containsKey(key) || counters.containsKey(key)) {

which should be if (gauges.containsKey(key) || counters.containsKey(key) || histograms .containsKey(key)) {