Register missing parameter reboot_timeout (#46585)

This commit is contained in:
Daniel Jakots 2018-10-08 14:56:40 -04:00 committed by Sam Doran
parent 1599752f26
commit 753711cd12
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- reboot - add reboot_timeout parameter to the list of parameters so it can be used.

View file

@ -28,7 +28,7 @@ class TimedOutException(Exception):
class ActionModule(ActionBase):
TRANSFERS_FILES = False
_VALID_ARGS = frozenset(('connect_timeout', 'msg', 'post_reboot_delay', 'pre_reboot_delay', 'test_command'))
_VALID_ARGS = frozenset(('connect_timeout', 'msg', 'post_reboot_delay', 'pre_reboot_delay', 'test_command', 'reboot_timeout'))
DEFAULT_REBOOT_TIMEOUT = 600
DEFAULT_CONNECT_TIMEOUT = None