mod_admin_shell: Remove obsolete module:load() argument from 0.8 time
authorKim Alvefur <zash@zash.se>
Fri, 05 Aug 2022 14:41:13 +0200
changeset 12607 05ca75309fa0
parent 12606 9184fe3d489a
child 12608 bd9e006a7a74
mod_admin_shell: Remove obsolete module:load() argument from 0.8 time This 'config' argument was removed without explanation in d8dbf569766c
plugins/mod_admin_shell.lua
--- a/plugins/mod_admin_shell.lua	Tue Aug 02 19:26:26 2022 +0200
+++ b/plugins/mod_admin_shell.lua	Fri Aug 05 14:41:13 2022 +0200
@@ -575,14 +575,14 @@
 	return true;
 end
 
-function def_env.module:load(name, hosts, config)
+function def_env.module:load(name, hosts)
 	hosts = get_hosts_with_module(hosts);
 
 	-- Load the module for each host
 	local ok, err, count, mod = true, nil, 0;
 	for host in hosts do
 		if (not modulemanager.is_loaded(host, name)) then
-			mod, err = modulemanager.load(host, name, config);
+			mod, err = modulemanager.load(host, name);
 			if not mod then
 				ok = false;
 				if err == "global-module-already-loaded" then