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 b256876 commit 6fbb5f4Copy full SHA for 6fbb5f4
src/apify/_actor.py
@@ -325,7 +325,9 @@ async def init(self) -> None:
325
# If the Actor is running on the Apify platform, we set the cloud storage client.
326
if self.is_at_home():
327
service_locator.set_storage_client(self._cloud_storage_client)
328
- self._finalize_implicit_local_storage_client()
+ self._local_storage_client = self._cloud_storage_client
329
+ else:
330
+ self._finalize_implicit_local_storage_client()
331
service_locator.set_event_manager(self.event_manager)
332
333
# The logging configuration has to be called after all service_locator set methods.
0 commit comments