File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -544,10 +544,12 @@ impl CoLink {
544544 Default :: default ( ) ,
545545 Default :: default ( ) ,
546546 Default :: default ( ) ,
547+ Default :: default ( ) ,
547548 )
548549 . await
549550 }
550551
552+ #[ allow( clippy:: too_many_arguments) ]
551553 pub async fn start_protocol_operator_full_config (
552554 & self ,
553555 protocol_name : & str ,
@@ -556,6 +558,7 @@ impl CoLink {
556558 source_type : & str ,
557559 deploy_mode : & str ,
558560 source : & str ,
561+ vt_public_addr : & str ,
559562 ) -> Result < String , Error > {
560563 let mut client = self . _grpc_connect ( & self . core_addr ) . await ?;
561564 let request = generate_request (
@@ -567,6 +570,7 @@ impl CoLink {
567570 source_type : source_type. to_string ( ) ,
568571 deploy_mode : deploy_mode. to_string ( ) ,
569572 source : source. to_string ( ) ,
573+ vt_public_addr : vt_public_addr. to_string ( ) ,
570574 } ,
571575 ) ;
572576 let response = client. start_protocol_operator ( request) . await ?;
You can’t perform that action at this time.
0 commit comments