We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8597e89 commit 3a1e924Copy full SHA for 3a1e924
src/a2a/server/request_handlers/default_request_handler.py
@@ -405,7 +405,7 @@ async def on_get_task_push_notification_config(
405
406
return TaskPushNotificationConfig(
407
task_id=params.id,
408
- pushNotificationConfig=push_notification_config[0],
+ push_notification_config=push_notification_config[0],
409
)
410
411
async def on_resubscribe_to_task(
@@ -471,7 +471,7 @@ async def on_list_task_push_notification_config(
471
for config in push_notification_config_list:
472
task_push_notification_config.append(
473
TaskPushNotificationConfig(
474
- task_id=params.id, pushNotificationConfig=config
+ task_id=params.id, push_notification_config=config
475
476
477
0 commit comments