From 8bac6fe829cf31730c530efa02f8038c0f00c2ae Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Thu, 18 Jul 2024 17:23:26 +0200 Subject: [PATCH] Set Run condition default timeout to one second The action is often used in combination with python scripts which usually take longer to initialize than 100ms --- plugins/base/macro-condition-run.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/base/macro-condition-run.hpp b/plugins/base/macro-condition-run.hpp index 5133df24..65ce175d 100644 --- a/plugins/base/macro-condition-run.hpp +++ b/plugins/base/macro-condition-run.hpp @@ -26,7 +26,7 @@ public: ProcessConfig _procConfig; bool _checkExitCode = true; int _exitCodeToCheck = 0; - Duration _timeout = Duration(0.1); + Duration _timeout = Duration(1.0); private: void RunProcess();