@@ -123,15 +123,17 @@ def build_variable_interval_retry(retry, max_retry_count, retry_strategy):
123
123
def process_indexed_function (functions_registry : functions .Registry ,
124
124
indexed_functions ):
125
125
fx_metadata_results = []
126
+ bindings_logs = {}
126
127
for indexed_function in indexed_functions :
127
128
function_info = functions_registry .add_indexed_function (
128
129
function = indexed_function )
129
130
130
131
binding_protos = build_binding_protos (indexed_function )
131
132
retry_protos = build_retry_protos (indexed_function )
132
133
133
- raw_bindings = get_fx_raw_bindings (indexed_function = indexed_function ,
134
- function_info = function_info )
134
+ raw_bindings , bindings_logs = get_fx_raw_bindings (
135
+ indexed_function = indexed_function ,
136
+ function_info = function_info )
135
137
136
138
function_metadata = protos .RpcFunctionMetadata (
137
139
name = function_info .name ,
@@ -149,7 +151,7 @@ def process_indexed_function(functions_registry: functions.Registry,
149
151
150
152
fx_metadata_results .append (function_metadata )
151
153
152
- return fx_metadata_results
154
+ return fx_metadata_results , bindings_logs
153
155
154
156
155
157
@attach_message_to_exception (
@@ -250,4 +252,4 @@ def get_fx_raw_bindings(indexed_function, function_info):
250
252
indexed_function , function_info .input_types )
251
253
252
254
else :
253
- return indexed_function .get_raw_bindings ()
255
+ return indexed_function .get_raw_bindings (), {}
0 commit comments