fix: use correct DEADSEND matching in project_manager

This commit is contained in:
CJ van den Berg 2024-08-29 16:53:34 +02:00
parent 336ea8684e
commit c348aa9656
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -294,7 +294,7 @@ const Process = struct {
return tp.exit_normal();
} else if (try m.match(.{ "exit", "normal" })) {
return;
} else if (try m.match(.{ "exit", "DEADSEND", tp.any })) {
} else if (try m.match(.{ "exit", "DEADSEND", tp.more })) {
return;
} else {
self.logger.err("receive", tp.unexpected(m));