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__(
74
74
75
75
# Create the instance of the cloud storage client, the local storage client is obtained
76
76
# 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 )
78
78
79
79
# Set the event manager based on whether the Actor is running on the platform or locally.
80
80
self ._event_manager = (
81
81
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 ,
84
84
)
85
85
if self .is_at_home ()
86
86
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 ,
89
89
)
90
90
)
91
91
You can’t perform that action at this time.
0 commit comments