nginx #2

Merged
mb merged 10 commits from nginx into master 2024-02-04 00:37:33 +01:00
Showing only changes of commit 4acf870e7b - Show all commits

View file

@ -60,7 +60,9 @@ export function loop_process(
const kill_sig = channel<"kill">(); const kill_sig = channel<"kill">();
kill_sig.receive().then(() => { kill_sig.receive().then(() => {
control.do_continue = false; control.do_continue = false;
control.child_process?.kill(); try {
control.child_process?.kill();
} catch (_) { /* isok */ }
}); });
async function launch() { async function launch() {
while (control.do_continue) { while (control.do_continue) {