From 8f71784c66e812f31fdc3e2523bd9abcc5d7cdcb Mon Sep 17 00:00:00 2001 From: Oyvind Albrigtsen Date: Fri, 11 Nov 2022 13:53:24 +0100 Subject: [PATCH] fence_vmware_soap: set default login timeout less than Pacemakers default timeout to remove tmp dirs --- agents/vmware_soap/fence_vmware_soap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/vmware_soap/fence_vmware_soap.py b/agents/vmware_soap/fence_vmware_soap.py index 51fb0f147..b1d27a9fb 100644 --- a/agents/vmware_soap/fence_vmware_soap.py +++ b/agents/vmware_soap/fence_vmware_soap.py @@ -57,7 +57,7 @@ def soap_login(options): try: headers = {"Content-Type" : "text/xml;charset=UTF-8", "SOAPAction" : "vim25"} - login_timeout = int(options["--login-timeout"]) or 60 + login_timeout = int(options["--login-timeout"]) or 50 conn = Client(url + "/vimService.wsdl", location=url, transport=RequestsTransport(verify=verify), headers=headers, timeout=login_timeout) mo_ServiceInstance = Property('ServiceInstance')