This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 28c653077494b60fd38a43c7064881eea13ad225 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) (cherry picked from commit 4408866b4b8766b0bd52333b5f6481c1b27cb993) --- 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
