# HG changeset patch # User Kim Alvefur # Date 1653924898 -7200 # Node ID 3caff1f935206618305b3154e7e32cb7e05ae8e1 # Parent 875f73ead4e8d8ac14ee2bcdf387a201402fc640 util.openmetrics: Set (previously unused, empty) metatable Silences luacheck warning about the metatable being unused. diff -r 875f73ead4e8 -r 3caff1f93520 util/openmetrics.lua --- a/util/openmetrics.lua Mon May 30 17:12:58 2022 +0200 +++ b/util/openmetrics.lua Mon May 30 17:34:58 2022 +0200 @@ -38,7 +38,7 @@ metric_proxy_mt.__index = metric_proxy_mt local function new_metric_proxy(metric_family, with_labels_proxy_fun) - return { + return setmetatable({ _family = metric_family, with_labels = function(self, ...) return with_labels_proxy_fun(self._family, ...) @@ -48,7 +48,7 @@ return family:with_labels(label, ...) end) end - } + }, metric_proxy_mt); end -- END of Utility: "metric proxy"