summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYong Li <yong.b.li@linux.intel.com>2020-02-13 15:56:43 +0300
committerYong Li <yong.b.li@linux.intel.com>2020-02-13 15:58:58 +0300
commit414068e084f9865a1c3dc4fc98b7be3de4cdb667 (patch)
treefdac19d439177a39add3543ede7ac4cae628b710
parentb3a14b22bc6c5cc233c63463100d8d637edfd2f8 (diff)
downloadprovingground-414068e084f9865a1c3dc4fc98b7be3de4cdb667.tar.xz
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 <yong.b.li@linux.intel.com>
-rw-r--r--settings/include/defaults.hpp6
1 files 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<uint8_t>(4));
- setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(12));
+ setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(100));
setting->addProperty("Threshold", static_cast<uint8_t>(96));
setting->addProperty("RetryCount", static_cast<uint8_t>(6));
setting->addProperty("RetryIntervalMS", static_cast<uint8_t>(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<uint8_t>(4));
- setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(12));
+ setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(100));
setting->addProperty("Threshold", static_cast<uint8_t>(96));
setting->addProperty("RetryCount", static_cast<uint8_t>(6));
setting->addProperty("RetryIntervalMS", static_cast<uint8_t>(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<uint8_t>(4));
- setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(12));
+ setting->addProperty("AccumulateIntervalMS", static_cast<uint8_t>(100));
setting->addProperty("Threshold", static_cast<uint8_t>(96));
setting->addProperty("RetryCount", static_cast<uint8_t>(6));
setting->addProperty("RetryIntervalMS", static_cast<uint8_t>(20));