Compare commits

..

1 Commits

Author SHA1 Message Date
MickLesk
e7d999a514 fix(frigate): correct CPU model fallback path
When OpenVino build fails, the fallback config referenced /cpu_model.tflite
but the model is downloaded to /models/cpu_model.tflite. This path mismatch
caused: ValueError: Could not open '/cpu_model.tflite'

Fixes #13141
2026-03-21 19:16:52 +01:00
2 changed files with 2 additions and 7 deletions

View File

@@ -22,12 +22,7 @@ replication:
replSetName: "rs0"
EOF
systemctl restart mongod
for i in $(seq 1 30); do
if mongosh --quiet --eval "db.adminCommand('ping')" &>/dev/null; then
break
fi
sleep 2
done
sleep 3
$STD mongosh --eval 'rs.initiate({_id: "rs0", members: [{_id: 0, host: "127.0.0.1:27017"}]})'
msg_ok "Configured MongoDB Replica Set"

View File

@@ -310,7 +310,7 @@ else
ffmpeg:
hwaccel_args: auto
model:
path: /cpu_model.tflite
path: /models/cpu_model.tflite
EOF
fi
msg_ok "Configured Frigate"