Blame SOURCES/bz1787178-2-fence_vmware_soap-login-timeout-15s.patch

555cc7
From 2d4b3ea47fa7a9a301d34cefc8f279cae7df4afd Mon Sep 17 00:00:00 2001
6ea3d6
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
555cc7
Date: Thu, 26 Jan 2023 13:19:16 +0100
555cc7
Subject: [PATCH] fence_vmware_soap: set login_timeout lower than default
555cc7
 pcmk_monitor_timeout (20s) to remove tmp dirs on fail
6ea3d6
6ea3d6
---
6ea3d6
 agents/vmware_soap/fence_vmware_soap.py | 2 +-
6ea3d6
 1 file changed, 1 insertion(+), 1 deletion(-)
6ea3d6
6ea3d6
diff --git a/agents/vmware_soap/fence_vmware_soap.py b/agents/vmware_soap/fence_vmware_soap.py
555cc7
index b1d27a9fb..4a4ec1780 100644
6ea3d6
--- a/agents/vmware_soap/fence_vmware_soap.py
6ea3d6
+++ b/agents/vmware_soap/fence_vmware_soap.py
6ea3d6
@@ -57,7 +57,7 @@ def soap_login(options):
6ea3d6
 
6ea3d6
 	try:
6ea3d6
 		headers = {"Content-Type" : "text/xml;charset=UTF-8", "SOAPAction" : "vim25"}
6ea3d6
-		login_timeout = int(options["--login-timeout"]) or 60
555cc7
+		login_timeout = int(options["--login-timeout"]) or 15
6ea3d6
 		conn = Client(url + "/vimService.wsdl", location=url, transport=RequestsTransport(verify=verify), headers=headers, timeout=login_timeout)
6ea3d6
 
6ea3d6
 		mo_ServiceInstance = Property('ServiceInstance')