Set lower bound on retry interval

This commit is contained in:
Nicolas Mowen 2025-09-02 10:14:18 -06:00
parent 62047c80d5
commit f9d9a83324

View File

@ -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,