File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed 
services/director-v2/src/simcore_service_director_v2/modules Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ async def _get_task_progress(job_id: str) -> TaskProgressEvent | None:
426426        return  await  limited_gather (
427427            * (_get_task_progress (job_id ) for  job_id  in  job_ids ),
428428            log = _logger ,
429-             limit = _MAX_CONCURRENT_CLIENT_CONNECTIONS ,
429+             limit = 1 ,
430430        )
431431
432432    async  def  get_tasks_status (self , job_ids : Iterable [str ]) ->  list [RunningState ]:
@@ -509,7 +509,7 @@ async def _get_task_state(job_id: str) -> RunningState:
509509        return  await  limited_gather (
510510            * (_get_task_state (job_id ) for  job_id  in  job_ids ),
511511            log = _logger ,
512-             limit = _MAX_CONCURRENT_CLIENT_CONNECTIONS ,
512+             limit = 1 ,
513513        )
514514
515515    async  def  abort_computation_task (self , job_id : str ) ->  None :
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments