From 2a1ac8a17f91e15b0d7818ec599a7d7e46e661cf Mon Sep 17 00:00:00 2001 From: Yhael S Date: Fri, 20 Oct 2023 01:09:20 -0500 Subject: [PATCH] fixed build --- odoo/entrypoint.sh | 2 +- odoo/odoorc.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/odoo/entrypoint.sh b/odoo/entrypoint.sh index 0750905..399249f 100755 --- a/odoo/entrypoint.sh +++ b/odoo/entrypoint.sh @@ -16,12 +16,12 @@ done < .env # Check the USE_REDIS to add base_attachment_object_storage & session_redis to LOAD variable if [[ $USE_REDIS == "true" ]]; then - LOAD+=",base_attachment_object_storage" LOAD+=",session_redis" fi # Check the USE_REDIS to add attachment_s3 to LOAD variable if [[ $USE_S3 == "true" ]]; then + LOAD+=",base_attachment_object_storage" LOAD+=",attachment_s3" fi diff --git a/odoo/odoorc.sh b/odoo/odoorc.sh index a4c7a73..6726828 100755 --- a/odoo/odoorc.sh +++ b/odoo/odoorc.sh @@ -22,12 +22,12 @@ done < .env # Check the USE_REDIS to add base_attachment_object_storage & session_redis to LOAD variable if [[ $USE_REDIS == "true" ]]; then - LOAD+=",base_attachment_object_storage" LOAD+=",session_redis" fi # Check the USE_REDIS to add attachment_s3 to LOAD variable if [[ $USE_S3 == "true" ]]; then + LOAD+=",base_attachment_object_storage" LOAD+=",attachment_s3" fi