File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1250,6 +1250,12 @@ def add_arguments(self, parser: ArgumentParser):
12501250 env_var = "ACAPY_MAX_MESSAGE_SIZE" ,
12511251 help = "Set the maximum size in bytes for inbound agent messages." ,
12521252 )
1253+ parser .add_argument (
1254+ "--light-weight-webhook" ,
1255+ action = "store_true" ,
1256+ env_var = "ACAPY_LIGHT_WEIGHT_WEBHOOK" ,
1257+ help = "omitted client's info from issue-credential related webhook" ,
1258+ )
12531259 parser .add_argument (
12541260 "--enable-undelivered-queue" ,
12551261 action = "store_true" ,
@@ -1313,6 +1319,8 @@ def get_settings(self, args: Namespace):
13131319 settings ["image_url" ] = args .image_url
13141320 if args .max_message_size :
13151321 settings ["transport.max_message_size" ] = args .max_message_size
1322+ if args .light_weight_webhook :
1323+ settings ["transport.light_weight_webhook" ] = True
13161324 if args .max_outbound_retry :
13171325 settings ["transport.max_outbound_retry" ] = args .max_outbound_retry
13181326 if args .ws_heartbeat_interval :
You can’t perform that action at this time.
0 commit comments