You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@liminal.apache.org by av...@apache.org on 2021/08/02 07:57:06 UTC

[incubator-liminal] branch master updated: fix build timeout and missing image type in liminal yaml

This is an automated email from the ASF dual-hosted git repository.

aviemzur pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-liminal.git


The following commit(s) were added to refs/heads/master by this push:
     new 85afc36  fix build timeout and missing image type in liminal yaml
85afc36 is described below

commit 85afc369e33c845e7c30f6c79ba81b31c8e9acc5
Author: assapin <47...@users.noreply.github.com>
AuthorDate: Mon Aug 2 10:57:00 2021 +0300

    fix build timeout and missing image type in liminal yaml
---
 liminal/build/image_builder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/liminal/build/image_builder.py b/liminal/build/image_builder.py
index 43b7267..cfc423f 100644
--- a/liminal/build/image_builder.py
+++ b/liminal/build/image_builder.py
@@ -74,7 +74,7 @@ class ImageBuilder:
         try:
             docker_build_out = subprocess.check_output(docker_build_command,
                                                        shell=True, stderr=subprocess.STDOUT,
-                                                       timeout=240)
+                                                       timeout=960)
         except subprocess.CalledProcessError as e:
             docker_build_out = e.output
             raise e