File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
services/storage/src/simcore_service_storage/api/rpc Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 11# pylint: disable=unused-argument
2- from datetime import datetime
32
43from fastapi import FastAPI
54from models_library .api_schemas_rpc_async_jobs .async_jobs import (
@@ -46,8 +45,6 @@ async def get_status(
4645 job_id = job_id ,
4746 progress = task_status .progress_report ,
4847 done = False ,
49- started = datetime .now (), # TODO: retrieve that
50- stopped = None , # TODO: retrieve that
5148 )
5249
5350
@@ -69,7 +66,7 @@ async def get_result(
6966
7067@router .expose ()
7168async def list_jobs (
72- app : FastAPI , filter_ : str , job_id_data : AsyncJobNameData # TODO: implement filter
69+ app : FastAPI , filter_ : str , job_id_data : AsyncJobNameData
7370) -> list [AsyncJobGet ]:
7471 assert app # nosec
7572
You can’t perform that action at this time.
0 commit comments