mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_cron: Rename variable to fix shadowing (#luacheck)
This commit is contained in:
parent
2524736225
commit
090f4830bb
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ module:add_item("shell-command", {
|
|||
name = "tasks";
|
||||
desc = "View registered tasks";
|
||||
args = {};
|
||||
handler = function (self, host)
|
||||
handler = function (self, filter_host)
|
||||
local format_table = require "prosody.util.human.io".table;
|
||||
local it = require "util.iterators";
|
||||
local row = format_table({
|
||||
|
@ -94,7 +94,7 @@ module:add_item("shell-command", {
|
|||
}, self.session.width);
|
||||
local print = self.session.print;
|
||||
print(row());
|
||||
for host in it.sorted_pairs(host and { [host]=true } or active_hosts) do
|
||||
for host in it.sorted_pairs(filter_host and { [filter_host]=true } or active_hosts) do
|
||||
for _, task in ipairs(module:context(host):get_host_items("task")) do
|
||||
print(row { host, task.id, task.name, task.when, task.last and os.date("%Y-%m-%d %R:%S", task.last) or "never" });
|
||||
--self.session.print(require "util.serialization".serialize(task, "debug"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue