Skip to content

Commit 6666f8b

Browse files
Merge pull request #146 from code0-tech/renovate/code0-flow-0.x
Update Rust crate code0-flow to 0.0.32
2 parents dccb285 + 54c75b2 commit 6666f8b

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 2 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
@@ -8,7 +8,7 @@ edition = "2024"
88

99
[workspace.dependencies]
1010
async-trait = "0.1.89"
11-
code0-flow = { version = "0.0.31" }
11+
code0-flow = { version = "0.0.32" }
1212
tucana = { version = "0.0.68" }
1313
tokio = { version = "1.44.1", features = ["rt-multi-thread", "signal"] }
1414
log = "0.4.27"

crates/taurus/src/app/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,13 @@ async fn setup_dynamic_services_if_needed(
129129
}
130130

131131
async fn push_definitions_until_success(config: &Config) {
132-
let definition_service = FlowUpdateService::from_url(
132+
let mut definition_service = FlowUpdateService::from_url(
133133
config.aquila_url.clone(),
134134
config.definitions.as_str(),
135135
config.aquila_token.clone(),
136136
)
137-
.await;
137+
.await
138+
.with_definition_source(String::from("taurus"));
138139

139140
let mut retry_count = 1;
140141
loop {

0 commit comments

Comments
 (0)