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();
|
return tp.exit_normal();
|
||||||
} else if (try m.match(.{ "exit", "normal" })) {
|
} else if (try m.match(.{ "exit", "normal" })) {
|
||||||
return;
|
return;
|
||||||
} else if (try m.match(.{ "exit", "DEADSEND", tp.any })) {
|
} else if (try m.match(.{ "exit", "DEADSEND", tp.more })) {
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
self.logger.err("receive", tp.unexpected(m));
|
self.logger.err("receive", tp.unexpected(m));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue