File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -74,18 +74,18 @@ def __init__(
7474
7575 # Create the instance of the cloud storage client, the local storage client is obtained
7676 # from the service locator.
77- self ._cloud_storage_client = ApifyStorageClient .from_config (config = self .config )
77+ self ._cloud_storage_client = ApifyStorageClient .from_config (config = self ._configuration )
7878
7979 # Set the event manager based on whether the Actor is running on the platform or locally.
8080 self ._event_manager = (
8181 PlatformEventManager (
82- config = self .config ,
83- persist_state_interval = self .config .persist_state_interval ,
82+ config = self ._configuration ,
83+ persist_state_interval = self ._configuration .persist_state_interval ,
8484 )
8585 if self .is_at_home ()
8686 else LocalEventManager (
87- system_info_interval = self .config .system_info_interval ,
88- persist_state_interval = self .config .persist_state_interval ,
87+ system_info_interval = self ._configuration .system_info_interval ,
88+ persist_state_interval = self ._configuration .persist_state_interval ,
8989 )
9090 )
9191
You can’t perform that action at this time.
0 commit comments