File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/apify/storage_clients/_apify
tests/e2e/test_schema_storages/actor_source Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class AliasResolver:
131131 _alias_init_lock : Lock | None = None
132132 """Lock for creating alias storages. Only one alias storage can be created at the time. Global for all instances."""
133133
134- default_storage_key : ClassVar [str ] = '__default_unnamed__ '
134+ default_storage_key : ClassVar [str ] = '__default__ '
135135
136136 def __init__ (
137137 self ,
Original file line number Diff line number Diff line change @@ -7,3 +7,7 @@ async def main() -> None:
77 dataset = await Actor .open_dataset (alias = 'custom' )
88 expected_id = Actor .configuration .actor_storages ['datasets' ]['custom' ]
99 assert dataset .id == expected_id
10+
11+ implicit_default_dataset = await Actor .open_dataset ()
12+ explicit_default_dataset = await Actor .open_dataset (alias = 'default' )
13+ assert implicit_default_dataset .id == explicit_default_dataset
You can’t perform that action at this time.
0 commit comments