From 507997d3a4255e52672274463dc5dec333a1198e Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Thu, 3 Nov 2022 16:04:28 +0100 Subject: [PATCH] fix: ``get_all_relations`` should set ``ALL_RELATIONS`` even on cache hit Signed-off-by: Valentin Lab --- bin/compose-core | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/compose-core b/bin/compose-core index bf2c4b3..7558b22 100755 --- a/bin/compose-core +++ b/bin/compose-core @@ -2491,6 +2491,7 @@ get_all_relations () { if [ -e "${cache_file}" ]; then #debug "$FUNCNAME: SESSION cache hit $1" + export ALL_RELATIONS="$cache_file" cat "${cache_file}" return 0 fi