Skip to content

Commit 357f156

Browse files
Merge pull request #149 from code0-tech/148-grpc-retry
Retry gRPC Connection to Aquila
2 parents c52a786 + 88ccf5c commit 357f156

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = "0.0.0"
77
edition = "2024"
88

99
[workspace.dependencies]
10-
code0-flow = { version = "0.0.24" }
10+
code0-flow = { version = "0.0.25" }
1111
tucana = { version = "0.0.52", features = ["aquila"] }
1212
serde_json = { version = "1.0.138" }
1313
log = "0.4.27"

crates/base/src/runner.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ impl<C: LoadConfig> ServerRunner<C> {
5858
let definition_service = FlowUpdateService::from_url(
5959
config.aquila_url.clone(),
6060
config.definition_path.as_str(),
61-
);
61+
)
62+
.await;
6263
definition_service.send().await;
6364
}
6465

0 commit comments

Comments
 (0)