frostfs-testlib/src/frostfs_testlib/defaults.py
Yulia Kovshova adb06aa158 Delete neofs_test_lib path
Signed-off-by: Yulia Kovshova <y.kovshova@yadro.com>
2023-02-16 18:09:37 +03:00

10 lines
259 B
Python

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