# HG changeset patch # User Matthew Wild # Date 1640033184 0 # Node ID ec21e379c145b1dc5dd732621e1789440cda2871 # Parent e87563fefd85ca7ae2b8d02e2e86fe94af05b4c7 configmanager: Update error message to say 'VirtualHost' instead of 'Host' diff -r e87563fefd85 -r ec21e379c145 core/configmanager.lua --- a/core/configmanager.lua Mon Dec 20 15:39:26 2021 +0000 +++ b/core/configmanager.lua Mon Dec 20 20:46:24 2021 +0000 @@ -173,7 +173,7 @@ name = prepped_name; if rawget(config_table, name) and rawget(config_table[name], "defined") and not rawget(config_table[name], "component_module") then - error(format("Component %q clashes with previously defined Host %q, for services use a sub-domain like conference.%s", + error(format("Component %q clashes with previously defined VirtualHost %q, for services use a sub-domain like conference.%s", name, name, name), 0); end set(config_table, name, "component_module", "component");