Add max on timeout so it is at least 60

This commit is contained in:
Nicolas Mowen 2023-07-19 14:04:54 -06:00 committed by GitHub
parent cfb1052675
commit 605295bc1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -313,7 +313,7 @@ class FrigateApp:
"cache_size": -512 * 1000, # 512MB of cache, "cache_size": -512 * 1000, # 512MB of cache,
"synchronous": "NORMAL", # Safe when using WAL https://www.sqlite.org/pragma.html#pragma_synchronous "synchronous": "NORMAL", # Safe when using WAL https://www.sqlite.org/pragma.html#pragma_synchronous
}, },
timeout=10 * len([c for c in self.config.cameras.values() if c.enabled]), timeout=max(60, 10 * len([c for c in self.config.cameras.values() if c.enabled])),
) )
models = [Event, Recordings, Timeline] models = [Event, Recordings, Timeline]
self.db.bind(models) self.db.bind(models)