fix: use correct DEADSEND matching in project_manager
This commit is contained in:
parent
336ea8684e
commit
c348aa9656
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue