File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed 
packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/storage 
services/web/server/src/simcore_service_webserver/storage Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,9 @@ async def start_export_data(
5050async  def  start_search (
5151    rabbitmq_rpc_client : RabbitMQRPCClient ,
5252    * ,
53-     user_id : UserID ,
54-     product_name : ProductName ,
53+     job_filter : AsyncJobFilter ,
5554    name_pattern : str ,
5655) ->  tuple [AsyncJobGet , AsyncJobFilter ]:
57-     job_filter  =  get_async_job_filter (user_id = user_id , product_name = product_name )
5856    async_job_rpc_get  =  await  submit (
5957        rabbitmq_rpc_client ,
6058        rpc_namespace = STORAGE_RPC_NAMESPACE ,
Original file line number Diff line number Diff line change @@ -546,9 +546,11 @@ def allow_only_simcore(cls, v: int) -> int:
546546        model_schema_cls = SearchBodyParams , request = request 
547547    )
548548    async_job_rpc_get , _  =  await  start_search (
549-         rabbitmq_rpc_client = rabbitmq_rpc_client ,
550-         user_id = _req_ctx .user_id ,
551-         product_name = _req_ctx .product_name ,
549+         rabbitmq_rpc_client ,
550+         job_filter = get_job_filter (
551+             user_id = _req_ctx .user_id ,
552+             product_name = _req_ctx .product_name ,
553+         ),
552554        name_pattern = search_body .name_pattern ,
553555    )
554556    _job_id  =  f"{ async_job_rpc_get .job_id }  " 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments