You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/03/14 21:24:29 UTC

[airflow] branch master updated: Fixes case where output log is missing for image waiting (#14784)

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 <ja...@potiuk.com>
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