From 7f126e58d2b174a2603be707fe321458fbe612e2 Mon Sep 17 00:00:00 2001 From: Antonin Kral Date: Sun, 22 Aug 2021 20:59:51 +0200 Subject: [PATCH] Fix for production docker environment Values are passed as written resulting in `"WARNING"` being passed to python logger, which will complain and panic. Fix is simply to remove `"` from the value. --- docker/prod-config.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/prod-config.env b/docker/prod-config.env index 50cf7a867b..34b9c6a081 100644 --- a/docker/prod-config.env +++ b/docker/prod-config.env @@ -4,7 +4,7 @@ # Ensure debug is false for a production setup INVENTREE_DEBUG=False -INVENTREE_LOG_LEVEL="WARNING" +INVENTREE_LOG_LEVEL=WARNING # Database configuration # Note: The example setup is for a PostgreSQL database (change as required)