From 61546a33859a92d26b98f8acb328e52f522a36d3 Mon Sep 17 00:00:00 2001 From: Sinny Kumari Date: Mar 09 2018 07:22:55 +0000 Subject: Increase imagefactory timeout from 7200 to 20000 seconds Building s390x cloud-base image in koji exceeds imagefactory timeout and causes image build to fail. Increasing timeout value to 20000 seconds will help to to build image successfully on s390x. Changing timeout value shouldn't impact build time for other images on any architectures. Signed-off-by: Sinny Kumari --- diff --git a/builder/kojid b/builder/kojid index 726d535..b7af219 100755 --- a/builder/kojid +++ b/builder/kojid @@ -3502,7 +3502,7 @@ class OzImageTask(BaseTaskHandler): 'imgdir': os.path.join(self.workdir, 'scratch_images'), 'tmpdir': os.path.join(self.workdir, 'oz-tmp'), 'verbose' : True, - 'timeout': 7200, + 'timeout': 20000, 'output': 'log', 'raw': False, 'debug': True,