mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
f98cf38994
commit
d1fe0504e7
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue