You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/migrations/v1_0/database/zero_downtime.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ Enable the v0.3 conversion utilities in your application entry point (e.g., `mai
62
62
63
63
```python
64
64
from a2a.server.tasks import DatabaseTaskStore, DatabasePushNotificationConfigStore
65
-
from a2a.compat.v0_3.conversionsimport (
65
+
from a2a.compat.v0_3.model_conversionsimport (
66
66
core_to_compat_task_model,
67
67
core_to_compat_push_notification_config_model,
68
68
)
@@ -126,7 +126,7 @@ This allows v1.0 instances to read *all* existing data regardless of when it was
126
126
127
127
## 🧩 Resources
128
128
-**[a2a-db CLI](../../../../src/a2a/migrations/README.md)**: The primary tool for executing schema migrations.
129
-
-**[Compatibility Conversions](../../../../src/a2a/compat/v0_3/conversions.py)**: Source for classes like `core_to_compat_task_model` used in Step 2.
129
+
-**[Compatibility Conversions](../../../../src/a2a/compat/v0_3/model_conversions.py)**: Source for model conversion functions `core_to_compat_task_model` and `core_to_compat_push_notification_config_model` used in Step 2.
130
130
-**[Task Store Implementation](../../../../src/a2a/server/tasks/database_task_store.py)**: The `DatabaseTaskStore` which handles the version-aware read/write logic.
131
131
-**[Push Notification Store Implementation](../../../../src/a2a/server/tasks/database_push_notification_config_store.py)**: The `DatabasePushNotificationConfigStore` which handles the version-aware read/write logic.
0 commit comments