Skip to content

Commit cad3a61

Browse files
authored
Update sap_control_exec.py
1 parent 2a364e0 commit cad3a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/modules/sap_control_exec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,9 +324,9 @@ def connection(hostname, port, username, password, function, parameter):
324324
if parameter is not None:
325325
result = _function(parameter)
326326
elif function == "StartSystem":
327-
result = _function(waittimeout=1)
327+
result = _function(waittimeout=0)
328328
elif function == "StopSystem" or function == "RestartSystem":
329-
result = _function(waittimeout=1, softtimeout=1)
329+
result = _function(waittimeout=0, softtimeout=0)
330330
else:
331331
result = _function()
332332

0 commit comments

Comments
 (0)