Update object_detection.py

This commit is contained in:
Tim Wesley 2025-04-11 16:44:44 -04:00 committed by GitHub
parent ec5ac92f8f
commit 5cf5c6c3eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -197,7 +197,7 @@ def async_run_detector(
):
# Set thread and process titles for logging and debugging
threading.current_thread().name = f"detector:{name}"
logger.info(f"Starting MemryX Async detection process: {os.getpid()}")
logger.info(f"Starting async detection process: {os.getpid()}")
setproctitle(f"frigate.detector.{name}")
stop_event = mp.Event() # Used to gracefully stop threads on signal
@ -274,7 +274,7 @@ def async_run_detector(
while not stop_event.is_set():
time.sleep(1)
logger.info("Exited MemryX detection process...")
logger.info("Exited async detection process...")
class ObjectDetectProcess: