migrator: Silence assert in core.moduleapi

The assert triggers because we're not loading the stanza route, because
we are unlikely to need it during migration.
This commit is contained in:
Kim Alvefur 2021-07-29 14:11:29 +02:00
parent f98cf38994
commit d1fe0504e7

View file

@ -54,6 +54,10 @@ do
prosody.config_loaded = true;
startup.load_libraries();
startup.init_http_client();
prosody.core_post_stanza = function ()
-- silence assert in core.moduleapi
error("Attempt to send stanzas from inside migrator.", 0);
end
end
-- Command-line parsing