mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 02:35:22 +03:00
Fix rebase issue
This commit is contained in:
parent
543e7fef84
commit
e02fe8bba1
@ -209,7 +209,11 @@ class FrigateApp:
|
|||||||
|
|
||||||
comms.append(WebSocketClient(self.config))
|
comms.append(WebSocketClient(self.config))
|
||||||
self.dispatcher = Dispatcher(
|
self.dispatcher = Dispatcher(
|
||||||
self.config, self.onvif_controller, self.camera_metrics, self.record_metrics, comms
|
self.config,
|
||||||
|
self.onvif_controller,
|
||||||
|
self.camera_metrics,
|
||||||
|
self.record_metrics,
|
||||||
|
comms,
|
||||||
)
|
)
|
||||||
|
|
||||||
def start_detectors(self) -> None:
|
def start_detectors(self) -> None:
|
||||||
|
|||||||
@ -7,12 +7,8 @@ from typing import Any, Callable
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
from frigate.config import FrigateConfig
|
from frigate.config import FrigateConfig
|
||||||
<<<<<<< HEAD
|
|
||||||
from frigate.ptz import OnvifController, OnvifCommandEnum
|
from frigate.ptz import OnvifController, OnvifCommandEnum
|
||||||
from frigate.types import CameraMetricsTypes
|
|
||||||
=======
|
|
||||||
from frigate.types import CameraMetricsTypes, RecordMetricsTypes
|
from frigate.types import CameraMetricsTypes, RecordMetricsTypes
|
||||||
>>>>>>> ab49f2f7 (Add support back for setting record via MQTT and WS)
|
|
||||||
from frigate.util import restart_frigate
|
from frigate.util import restart_frigate
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user