We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f6599 commit 54c75b2Copy full SHA for 54c75b2
1 file changed
crates/taurus/src/app/mod.rs
@@ -129,12 +129,13 @@ async fn setup_dynamic_services_if_needed(
129
}
130
131
async fn push_definitions_until_success(config: &Config) {
132
- let definition_service = FlowUpdateService::from_url(
+ let mut definition_service = FlowUpdateService::from_url(
133
config.aquila_url.clone(),
134
config.definitions.as_str(),
135
config.aquila_token.clone(),
136
)
137
- .await;
+ .await
138
+ .with_definition_source(String::from("taurus"));
139
140
let mut retry_count = 1;
141
loop {
0 commit comments