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

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 4408866  Fixes case where output log is missing for image waiting 
(#14784)
4408866 is described below

commit 4408866b4b8766b0bd52333b5f6481c1b27cb993
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun Mar 14 22:24:12 2021 +0100

    Fixes case where output log is missing for image waiting (#14784)
---
 scripts/ci/libraries/_build_images.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/libraries/_build_images.sh 
b/scripts/ci/libraries/_build_images.sh
index 2deb574..27beb74 100644
--- a/scripts/ci/libraries/_build_images.sh
+++ b/scripts/ci/libraries/_build_images.sh
@@ -1009,7 +1009,7 @@ function build_images::wait_for_image_tag() {
             echo "The image ${IMAGE_TO_WAIT_FOR} is not yet available. No 
local hash for the image. Waiting."
             echo
             echo "Last log:"
-            cat "${OUTPUT_LOG}"
+            cat "${OUTPUT_LOG}" || true
             echo
             sleep 10
         else

Reply via email to