From 274c6136c77a1bf2d280002ca923ca3c18be6d53 Mon Sep 17 00:00:00 2001 From: s6anloes Date: Fri, 12 Apr 2024 11:49:25 +0100 Subject: [PATCH] Allowed for more corryvreckan shutdown time before quitting violently --- user/example/module/src/CorryMonitor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/example/module/src/CorryMonitor.cc b/user/example/module/src/CorryMonitor.cc index a966029e0..0526c3ff8 100644 --- a/user/example/module/src/CorryMonitor.cc +++ b/user/example/module/src/CorryMonitor.cc @@ -553,7 +553,7 @@ void CorryMonitor::DoStopRun(){ kill(m_corry_pid, SIGINT); bool died = false; - for (int loop=0; !died && loop < 15; ++loop) + for (int loop=0; !died && loop < 30; ++loop) { int status; eudaq::mSleep(1000);