From e664cb228509c82dc7482317ae54dc1e706ea064 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 2 Sep 2025 10:24:25 -0600 Subject: [PATCH] Set lower bound on retry interval (#19883) --- frigate/config/camera/ffmpeg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/config/camera/ffmpeg.py b/frigate/config/camera/ffmpeg.py index 04bbfac7b..dd65fdcd4 100644 --- a/frigate/config/camera/ffmpeg.py +++ b/frigate/config/camera/ffmpeg.py @@ -61,6 +61,7 @@ class FfmpegConfig(FrigateBaseModel): retry_interval: float = Field( default=10.0, title="Time in seconds to wait before FFmpeg retries connecting to the camera.", + gt=0.0, ) apple_compatibility: bool = Field( default=False,