diff --git a/lib/rpc.py b/lib/rpc.py index 1c2065d15edaaa144283ab8b4bd2d45aa6601a8b..c81c366b2fa7dbf1446b943c6ff30b60354a8183 100644 --- a/lib/rpc.py +++ b/lib/rpc.py @@ -1177,14 +1177,14 @@ class RpcRunner(object): return cls._StaticMultiNodeCall(node_list, "write_ssconf_files", [values]) @_RpcTimeout(_TMO_NORMAL) - def call_run_oob(self, node, oob_program, command, remote_node): + def call_run_oob(self, node, oob_program, command, remote_node, timeout): """Runs OOB. This is a single-node call. """ return self._SingleNodeCall(node, "run_oob", [oob_program, command, - remote_node]) + remote_node, timeout]) @_RpcTimeout(_TMO_FAST) def call_os_diagnose(self, node_list):