Skip to content

Commit 47572cd

Browse files
Support '~transport' decorator 'return_route' all for 'read-all-template' (data-agreements) and 'details' (data-controller) messages
Signed-off-by: George J Padayatti <[email protected]>
1 parent 182b5e1 commit 47572cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mydata_did/v1_0/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4044,7 +4044,7 @@ async def process_read_all_data_agreement_template_message(self, read_all_data_a
40444044
# Send ReadAllDataAgreementTemplateResponse message to the requester.
40454045

40464046
if responder:
4047-
await responder.send_reply(read_all_data_agreement_template_response, connection_id=self.context.connection_record.connection_id)
4047+
await responder.send_reply(read_all_data_agreement_template_response)
40484048

40494049
async def send_read_all_data_agreement_template_message(self, conn_id: str) -> None:
40504050
"""Send read all data agreement template message to the remote agent."""
@@ -4220,7 +4220,7 @@ async def process_data_controller_details_message(self, data_controller_details_
42204220
# Send DataControllerDetailsResponseMessage to the requester.
42214221

42224222
if responder:
4223-
await responder.send_reply(data_controller_details_response_message, connection_id=self.context.connection_record.connection_id)
4223+
await responder.send_reply(data_controller_details_response_message)
42244224

42254225
async def send_data_controller_details_message(self, conn_id: str) -> None:
42264226
"""Send data controller details message."""

0 commit comments

Comments
 (0)