From e1508beb9b82af39b73ad808152303e338d9bd4b Mon Sep 17 00:00:00 2001 From: mraszyk <31483726+mraszyk@users.noreply.github.com> Date: Tue, 5 Nov 2024 11:49:44 +0100 Subject: [PATCH] chore: update error message when launcher process received signal (#2438) --- .../src/replica_controller/sandboxed_execution_controller.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/canister_sandbox/src/replica_controller/sandboxed_execution_controller.rs b/rs/canister_sandbox/src/replica_controller/sandboxed_execution_controller.rs index a0173756d5d5..9a38cdc3d9e7 100644 --- a/rs/canister_sandbox/src/replica_controller/sandboxed_execution_controller.rs +++ b/rs/canister_sandbox/src/replica_controller/sandboxed_execution_controller.rs @@ -1825,7 +1825,7 @@ pub fn panic_due_to_exit(output: ExitStatus, pid: u32) { pid, code ), None => panic!( - "Error from launcher process, pid {} exited due to signal!", + "Error from launcher process, pid {} exited due to signal! In test environments (e.g., PocketIC), you can safely ignore this message.", pid ), }