From a606d23e824d1e335eb5322bba7e82b60ac8cd1d Mon Sep 17 00:00:00 2001 From: Paul Cioanca Date: Mon, 4 Dec 2023 13:33:44 +0200 Subject: [PATCH] chore: fix for missing env --- docker/all-in-one/entrypoint.sh | 2 ++ testinfra/test_all_in_one.py | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/all-in-one/entrypoint.sh b/docker/all-in-one/entrypoint.sh index 5e28bc65e..f9e128448 100755 --- a/docker/all-in-one/entrypoint.sh +++ b/docker/all-in-one/entrypoint.sh @@ -9,6 +9,8 @@ export CONFIGURED_FLAG_PATH=${CONFIGURED_FLAG_PATH:-$DATA_VOLUME_MOUNTPOINT/mach LSN_CHECKPOINT_FILE_PATH="${DATA_VOLUME_MOUNTPOINT}/latest-lsn-checkpoint" +export MAX_IDLE_TIME_MINUTES=${MAX_IDLE_TIME_MINUTES:-5} + # Ref: https://gist.github.com/sj26/88e1c6584397bb7c13bd11108a579746 function retry { # Pass 0 for unlimited retries diff --git a/testinfra/test_all_in_one.py b/testinfra/test_all_in_one.py index 086788cf3..4f5456f1e 100644 --- a/testinfra/test_all_in_one.py +++ b/testinfra/test_all_in_one.py @@ -41,8 +41,6 @@ def host(): "--load", "--tag", all_in_one_image_tag, - "--cache-from", - "supabase/postgres:aio-15.1.0.136", path.join(path.dirname(__file__), ".."), ] )