File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,15 +129,15 @@ async def run(self, platform_id: str | None = None) -> None:
129129 ExtractMediaWikiWorkflow .run ,
130130 mediawiki_platform ,
131131 id = f"mediawiki:extract:{ platform ['community_id' ]} " ,
132- start_to_close_timeout = timedelta (days = 5 ),
132+ execution_timeout = timedelta (days = 6 ),
133133 )
134134
135135 # Transform the extracted data and store in S3
136136 transformed_data_key = await workflow .execute_child_workflow (
137137 TransformMediaWikiWorkflow .run ,
138138 mediawiki_platform ,
139139 id = f"mediawiki:transform:{ platform ['community_id' ]} " ,
140- start_to_close_timeout = timedelta (hours = 6 ),
140+ execution_timeout = timedelta (hours = 6 ),
141141 )
142142
143143 mediawiki_platform ["transformed_data_key" ] = transformed_data_key
@@ -146,7 +146,7 @@ async def run(self, platform_id: str | None = None) -> None:
146146 LoadMediaWikiWorkflow .run ,
147147 mediawiki_platform ,
148148 id = f"mediawiki:load:{ platform ['community_id' ]} " ,
149- start_to_close_timeout = timedelta (hours = 3 ),
149+ execution_timeout = timedelta (days = 3 ),
150150 )
151151
152152 logging .info (
You can’t perform that action at this time.
0 commit comments