fix: timeout cancelled messsages instead of displaying them in the minilog

This commit is contained in:
CJ van den Berg 2024-03-02 19:26:07 +01:00
parent 1d418db9b4
commit b2c12ba337

View file

@ -288,6 +288,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) tp.result {
if (try m.match(.{ "exit", "normal" }))
return;
if (try m.match(.{ "exit", "timeout_error", 125, "Operation aborted." }))
return;
return tp.unexpected(m);
}