diff options
author | Christian Breunig <christian@breunig.cc> | 2024-10-05 10:03:49 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-10-05 10:03:49 +0200 |
commit | 810d9a819ee378460a05ed6c7e064fb105058fc2 (patch) | |
tree | 561ffb75b64413340e41ab0c686a517f7d066e82 | |
parent | 2ba5089fb2cca7e3e172ec5b4ce6a79cc521312b (diff) | |
download | vyos-1x-810d9a819ee378460a05ed6c7e064fb105058fc2.tar.gz vyos-1x-810d9a819ee378460a05ed6c7e064fb105058fc2.zip |
smoketest: T4576: add guard timeout for systemd in log level tests
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.
-rw-r--r-- | smoketest/scripts/cli/base_accel_ppp_test.py | 6 |
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) |