We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0073bae commit c44c215Copy full SHA for c44c215
horizon/state.py
@@ -12,6 +12,7 @@
12
import aiohttp
13
from fastapi import status
14
from opal_common.logger import logger
15
+from opal_common.schemas.data import DataUpdateReport
16
from pydantic import BaseModel, ValidationError
17
18
from horizon.config import sidecar_config
@@ -177,7 +178,7 @@ def _build_state_payload(cls, state: PersistentState | None = None) -> dict:
177
178
},
179
}
180
- async def reporter_user_data_handler(self) -> dict[str, Any]:
181
+ async def reporter_user_data_handler(self, report: DataUpdateReport) -> dict[str, Any]: # noqa: ARG002
182
return {
183
"pdp_instance_id": self.get().pdp_instance_id,
184
0 commit comments