graphite-project / carbon

Exception caught is very general PYL-W0703
Anti-pattern
Major
1 occurrence in this check
Catching too general exception Exception
128        if settings.ENABLE_TAGS:
129            tagQueue.add(metric)
130        instrumentation.increment('creates')
131    except Exception as e:132        log.err()
133        log.msg("Error creating %s: %s" % (metric, e))
134        instrumentation.increment('errors')