In #46, I introduced a deprecated alias for the typo'd constant UnixSocketUtilitization using const_missing. Unfortunately, I left out the return on the super call. This doesn't cause any problems as-is, but would do confusing, unexpected things if someone were to reference a constant that doesn't exist within Metric, e.g. while developing a new metric.
In #46, I introduced a deprecated alias for the typo'd constant
UnixSocketUtilitization
usingconst_missing
. Unfortunately, I left out thereturn
on thesuper
call. This doesn't cause any problems as-is, but would do confusing, unexpected things if someone were to reference a constant that doesn't exist withinMetric
, e.g. while developing a new metric.