From 88d2c283a9185d71ff7fa81bca5f2c0ad2a5ff7d Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 27 Sep 2020 14:02:47 -0700 Subject: [PATCH] ProcessManager: remove unnecessary die --- PBot/ProcessManager.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/PBot/ProcessManager.pm b/PBot/ProcessManager.pm index 169cc657..e717a18c 100644 --- a/PBot/ProcessManager.pm +++ b/PBot/ProcessManager.pm @@ -195,7 +195,6 @@ sub execute_process { local $SIG{ALRM} = sub { die "Process `$context->{commands}->[0]` timed-out" }; alarm $timeout; $subref->($context); - die if $@; }; alarm 0;