mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.shell: Close state on exit to fix saving shell history
This ensures a last round of garbage collection and finalizers, which should include flushing the readline history file. Test procedure: ``` $ ./prosodyctl shell prosody> s2s:show() -- any command that is not the last in history ... output prosody> bye $ ./prosodyctl shell prosody> ^P ``` After this, the shell prompt should contain the last command from before the "bye". Before this patch, recent history is gone most of the time.
This commit is contained in:
parent
81fd03356f
commit
7c302e9c4c
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ local function repl(client)
|
|||
if have_readline then
|
||||
readline.save_history();
|
||||
end
|
||||
os.exit();
|
||||
os.exit(0, true);
|
||||
end
|
||||
send_line(client, line);
|
||||
end
|
||||
|
@ -112,7 +112,7 @@ local function start(arg) --luacheck: ignore 212/arg
|
|||
|
||||
client.events.add_handler("disconnected", function ()
|
||||
print("--- session closed ---");
|
||||
os.exit();
|
||||
os.exit(0, true);
|
||||
end);
|
||||
|
||||
client.events.add_handler("received", function (stanza)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue