From 94766f511bc32caa26c51063ab1a4cca26cafc2e Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 30 Jan 2023 15:11:32 -0700 Subject: [PATCH] Remove debug check --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index 14adf8010..95ffafb23 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -341,7 +341,7 @@ class FrigateApp: 1, ) - if calculated_shm < current_shm or True: + if calculated_shm < current_shm: logger.warning( f"The current SHM size of {current_shm}MB is too small, recommend increasing it to at least {calculated_shm}MB." )