File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/director_v2 Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 11# pylint: disable=too-many-arguments
22import logging
3+ from typing import Final
34
45from models_library .api_schemas_directorv2 import (
56 DIRECTOR_V2_RPC_NAMESPACE ,
1718
1819_RPC_METHOD_NAME_ADAPTER : TypeAdapter [RPCMethodName ] = TypeAdapter (RPCMethodName )
1920
21+ _GET_COMPUTATION_TASK_LOG_FILE_IDS : Final [RPCMethodName ] = (
22+ _RPC_METHOD_NAME_ADAPTER .validate_python ("get_computation_task_log_file_ids" )
23+ )
24+
2025
2126@log_decorator (_logger , level = logging .DEBUG )
2227async def get_computation_task_log_file_ids (
@@ -28,7 +33,7 @@ async def get_computation_task_log_file_ids(
2833 """
2934 result = await rabbitmq_rpc_client .request (
3035 DIRECTOR_V2_RPC_NAMESPACE ,
31- _RPC_METHOD_NAME_ADAPTER . validate_python ( "get_computation_task_log_file_ids" ) ,
36+ _GET_COMPUTATION_TASK_LOG_FILE_IDS ,
3237 project_id = project_id ,
3338 )
3439 assert isinstance (result , list ) # nosec
You can’t perform that action at this time.
0 commit comments