From 3a1330759851bfda75adbe991a4e65b33792c6c6 Mon Sep 17 00:00:00 2001 From: Till Maas Date: Nov 27 2015 17:39:13 +0000 Subject: Increase default SSL timeout to 600 60 is not enough to process a full release like Rawhide and last I checked the code to use a different timeout than the default timeout does not work. Therefore use a working default value. Signed-off-by: Till Maas --- diff --git a/koji/ssl/SSLConnection.py b/koji/ssl/SSLConnection.py index 5a45095..fae25e9 100644 --- a/koji/ssl/SSLConnection.py +++ b/koji/ssl/SSLConnection.py @@ -16,7 +16,7 @@ class SSLConnection: passed in to the shutdown() method in SimpleXMLRPC.doPOST() """ - DEFAULT_TIMEOUT = 60 + DEFAULT_TIMEOUT = 600 def __init__(self, conn): """