From 414068e084f9865a1c3dc4fc98b7be3de4cdb667 Mon Sep 17 00:00:00 2001 From: Yong Li Date: Thu, 13 Feb 2020 20:56:43 +0800 Subject: Increase the timeout value to fix netipmid crash issue during stress test During stress test, netipmid service will crash with "bad executor" error, the current Character Accumulate Interval is too small, after increase it to 100, no more crash issue. Tested: Start "ipmitool sel list", "ipmitool sensor list" and "ipmitool sol looptest 200 500" at the same time, no "sol looptest fail" error Change-Id: Idf8ba1fdc3478bda408cf668f671411a02574b68 Signed-off-by: Yong Li --- settings/include/defaults.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/include/defaults.hpp b/settings/include/defaults.hpp index b640ad2..8095746 100644 --- a/settings/include/defaults.hpp +++ b/settings/include/defaults.hpp @@ -274,7 +274,7 @@ inline void loadSettings(sdbusplus::asio::object_server &objectServer, setting->addProperty("ForceEncryption", true); setting->addProperty("ForceAuthentication", true); setting->addProperty("Privilege", static_cast(4)); - setting->addProperty("AccumulateIntervalMS", static_cast(12)); + setting->addProperty("AccumulateIntervalMS", static_cast(100)); setting->addProperty("Threshold", static_cast(96)); setting->addProperty("RetryCount", static_cast(6)); setting->addProperty("RetryIntervalMS", static_cast(20)); @@ -288,7 +288,7 @@ inline void loadSettings(sdbusplus::asio::object_server &objectServer, setting->addProperty("ForceEncryption", true); setting->addProperty("ForceAuthentication", true); setting->addProperty("Privilege", static_cast(4)); - setting->addProperty("AccumulateIntervalMS", static_cast(12)); + setting->addProperty("AccumulateIntervalMS", static_cast(100)); setting->addProperty("Threshold", static_cast(96)); setting->addProperty("RetryCount", static_cast(6)); setting->addProperty("RetryIntervalMS", static_cast(20)); @@ -302,7 +302,7 @@ inline void loadSettings(sdbusplus::asio::object_server &objectServer, setting->addProperty("ForceEncryption", true); setting->addProperty("ForceAuthentication", true); setting->addProperty("Privilege", static_cast(4)); - setting->addProperty("AccumulateIntervalMS", static_cast(12)); + setting->addProperty("AccumulateIntervalMS", static_cast(100)); setting->addProperty("Threshold", static_cast(96)); setting->addProperty("RetryCount", static_cast(6)); setting->addProperty("RetryIntervalMS", static_cast(20)); -- cgit v1.2.3