frostfs-testlib/src/frostfs_testlib/defaults.py
Dmitriy Zayakin 328e43fe67 [#162] Refactor frostfs-cli functional
Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
2024-01-22 13:11:59 +00:00

10 lines
260 B
Python

class Options:
DEFAULT_SHELL_TIMEOUT = 120
@staticmethod
def get_default_shell_timeout():
return Options.DEFAULT_SHELL_TIMEOUT
@staticmethod
def set_default_shell_timeout(value: int):
Options.DEFAULT_SHELL_TIMEOUT = value