Skip to content

Commit f5cb0a2

Browse files
committed
add vt_public_addr
1 parent 6b26d2c commit f5cb0a2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

proto

Submodule proto updated 1 file

src/application.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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?;

0 commit comments

Comments
 (0)