refactor: drop dead send warnings in tui log

This commit is contained in:
CJ van den Berg 2024-04-10 18:37:42 +02:00
parent 9caf1d8947
commit 53554be4b0

View file

@ -312,6 +312,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) tp.result {
if (try m.match(.{ "exit", "timeout_error", 125, "Operation aborted." }))
return;
if (try m.match(.{ "exit", "DEADSEND", tp.more }))
return;
if (try m.match(.{ "PRJ", tp.more })) // drop late project manager query responses
return;