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/04_upgrading/upgrading_to_v3.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,13 @@ Some changes in the related model classes:
69
69
## Removed Actor.config property
70
70
-`Actor.config` property has been removed. Use `Actor.configuration` instead.
71
71
72
+
## Default storage ids in configuration changed to None
73
+
-`Configuration.default_key_value_store_id` changed from `'default'` to `None`.
74
+
-`Configuration.default_dataset_id` changed from `'default'` to `None`.
75
+
-`Configuration.default_request_queue_id` changed from `'default'` to `None`.
76
+
77
+
Previously using the default storage without specifying its `id` in `Configuration` would lead to using specific storage with id `'default'`. Now it will use newly created unnamed storage with `'id'` assigned by the Apify platform, consecutive calls to get the default storage will return the same storage.
78
+
72
79
## Actor initialization and ServiceLocator changes
73
80
74
81
`Actor` initialization and global `service_locator` services setup is more strict and predictable.
@@ -102,9 +109,6 @@ async def main():
102
109
)
103
110
```
104
111
105
-
## Removed Actor.config property
106
-
-`Actor.config` property has been removed. Use `Actor.configuration` instead.
107
-
108
112
### Changes in storage clients
109
113
110
114
## Explicit control over storage clients used in Actor
0 commit comments