We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396a216 commit 9f8f587Copy full SHA for 9f8f587
1 file changed
src/a2a/server/request_handlers/default_request_handler_v2.py
@@ -340,7 +340,7 @@ async def on_create_task_push_notification_config( # noqa: D102
340
context: ServerCallContext,
341
) -> TaskPushNotificationConfig:
342
if not self._push_config_store:
343
- raise UnsupportedOperationError
+ raise PushNotificationNotSupportedError
344
345
task_id = params.task_id
346
task: Task | None = await self.task_store.get(task_id, context)
@@ -367,7 +367,7 @@ async def on_get_task_push_notification_config( # noqa: D102
367
368
369
370
371
372
373
config_id = params.id
0 commit comments