From bee0904e27b859c29b19429aaba6ae4775a4a9cf Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Jan 14 2019 19:07:54 +0000 Subject: Increase ODCS timeout to 30 minutes. --- diff --git a/freshmaker/odcsclient.py b/freshmaker/odcsclient.py index 5ff2f36..111c6d1 100644 --- a/freshmaker/odcsclient.py +++ b/freshmaker/odcsclient.py @@ -307,7 +307,7 @@ class FreshmakerODCSClient(object): # block. It would still be nice to redesign that part of # Freshmaker to do things "right". # This is tracked here: https://pagure.io/freshmaker/issue/114 - @retry(timeout=60, interval=2) + @retry(timeout=60*30, interval=2) def wait_for_compose(compose_id): ret = odcs.get_compose(compose_id) if ret["state_name"] == "done":