forked from TrueCloudLab/frostfs-testlib
1. Adding timeout control things 2. Add logs filtering
Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
This commit is contained in:
parent
22f73e6cde
commit
469ab4db43
6 changed files with 106 additions and 9 deletions
10
src/neofs_testlib/defaults.py
Normal file
10
src/neofs_testlib/defaults.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
class Options:
|
||||
DEFAULT_SHELL_TIMEOUT = 90
|
||||
|
||||
@staticmethod
|
||||
def get_default_shell_timeout():
|
||||
return Options.DEFAULT_SHELL_TIMEOUT
|
||||
|
||||
@staticmethod
|
||||
def set_default_shell_timeout(value: int):
|
||||
Options.DEFAULT_SHELL_TIMEOUT = value
|
Loading…
Add table
Add a link
Reference in a new issue