Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "0.0.0"
edition = "2024"

[workspace.dependencies]
code0-flow = { version = "0.0.31" }
code0-flow = { version = "0.0.32" }
tucana = { version = "0.0.68", features = ["aquila"] }
serde_json = { version = "1.0.138" }
log = "0.4.27"
Expand Down
7 changes: 4 additions & 3 deletions crates/base/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ impl<C: LoadConfig> ServerRunner<C> {
) -> anyhow::Result<()> {
let config = self.context.adapter_config.clone();
let mut runtime_status_service: Option<DracoRuntimeStatusService> = None;

log::info!("Starting Draco Variant: {}", config.draco_variant);

if !config.is_static() {
Expand All @@ -85,12 +84,14 @@ impl<C: LoadConfig> ServerRunner<C> {
.await;
};

let definition_service = FlowUpdateService::from_url(
let service_name = format!("draco-{}", config.draco_variant.to_lowercase());
let mut definition_service = FlowUpdateService::from_url(
config.aquila_url.clone(),
config.definition_path.as_str(),
config.aquila_token.clone(),
)
.await;
.await
.with_definition_source(service_name);

let mut success = false;
let mut count = 1;
Expand Down