summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-10-05 10:03:49 +0200
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-10-07 18:02:25 +0000
commitc3602a698de0ef57e217736d6ccf84a2522c3565 (patch)
treec8148523d6b1928122106ee0630fcb4783992e7a
parent47b1ace0e7f5b718a628c0e39a99cca775ff44b7 (diff)
downloadvyos-1x-c3602a698de0ef57e217736d6ccf84a2522c3565.tar.gz
vyos-1x-c3602a698de0ef57e217736d6ccf84a2522c3565.zip
smoketest: T4576: add guard timeout for systemd in log level testsmergify/bp/circinus/pr-4129
Systemd comes with a default of 5 restarts in 10 seconds policy, this limit can be hit by this reastart sequence, slow down a bit. (cherry picked from commit 810d9a819ee378460a05ed6c7e064fb105058fc2)
-rw-r--r--smoketest/scripts/cli/base_accel_ppp_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/base_accel_ppp_test.py b/smoketest/scripts/cli/base_accel_ppp_test.py
index c6f6cb804..750702e98 100644
--- a/smoketest/scripts/cli/base_accel_ppp_test.py
+++ b/smoketest/scripts/cli/base_accel_ppp_test.py
@@ -14,6 +14,7 @@
import re
+from time import sleep
from base_vyostest_shim import VyOSUnitTestSHIM
from configparser import ConfigParser
@@ -641,6 +642,11 @@ delegate={delegate_2_prefix},{delegate_mask},name={pool_name}"""
for log_level in range(0, 5):
self.set(['log', 'level', str(log_level)])
self.cli_commit()
+
+ # Systemd comes with a default of 5 restarts in 10 seconds policy,
+ # this limit can be hit by this reastart sequence, slow down a bit
+ sleep(5)
+
# Validate configuration values
conf = ConfigParser(allow_no_value=True)
conf.read(self._config_file)