frostfs-testlib/src/frostfs_testlib/defaults.py
Dmitriy Zayakin cda3773fa8 [#163] Refactor frostfs-cli functional
Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
2024-01-22 14:26:25 +03: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