mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-02-14 00:17:05 +01:00
Add handling for non-existent or empty model file paths (#6525)
* Add handling for non-existent or empty model file paths in `compute_model_hash()` method * Remove print() in detector_config.py Co-authored-by: Blake Blackshear <blakeb@blakeshome.com> --------- Co-authored-by: Blake Blackshear <blakeb@blakeshome.com>
This commit is contained in:
parent
53d63e0f75
commit
11738110dc
@ -118,6 +118,9 @@ class ModelConfig(BaseModel):
|
||||
}
|
||||
|
||||
def compute_model_hash(self) -> None:
|
||||
if not self.path or not os.path.exists(self.path):
|
||||
self._model_hash = hashlib.md5(b"unknown").hexdigest()
|
||||
else:
|
||||
with open(self.path, "rb") as f:
|
||||
file_hash = hashlib.md5()
|
||||
while chunk := f.read(8192):
|
||||
|
Loading…
Reference in New Issue
Block a user