Skip to content

Commit 1107435

Browse files
add task params
1 parent 4f3e722 commit 1107435

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/storage/src/simcore_service_storage/api/rpc/_data_export.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ async def start_data_export(
5252
) from err
5353

5454
task_uuid = await get_celery_client(app).send_task(
55-
"export_data", task_context=job_id_data.model_dump()
55+
"export_data",
56+
task_context=job_id_data.model_dump(),
57+
files=data_export_start.file_and_folder_ids, # ANE: adapt here your signature
5658
)
5759

5860
return AsyncJobGet(

0 commit comments

Comments
 (0)