mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.moduleapi: Default labels to empty list to fix error if omitted
In a host-scoped module in the `if is_scoped` clause the resulting `array:append(nil)` call throws.
This commit is contained in:
parent
4f7c829b1e
commit
65386e9810
1 changed files with 1 additions and 0 deletions
|
@ -558,6 +558,7 @@ end
|
|||
function api:metric(type_, name, unit, description, label_keys, conf)
|
||||
local metric = require "core.statsmanager".metric;
|
||||
local is_scoped = self.host ~= "*"
|
||||
label_keys = label_keys or {};
|
||||
if is_scoped then
|
||||
-- prepend `host` label to label keys if this is not a global module
|
||||
local orig_labels = label_keys
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue