From 9e8765e7795d355c5e22dfaea33d49981e62f892 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 30 Jan 2023 15:50:09 -0700 Subject: [PATCH] Fix --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index 1c429c334..dd1dcc014 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -341,7 +341,7 @@ class FrigateApp: 1, ) - if available_shm < min_req_shm + if available_shm < min_req_shm: logger.warning( f"The current SHM size of {current_shm}MB is too small, recommend increasing it to at least {calculated_shm}MB." )