diff --git a/server/Cargo.lock b/server/Cargo.lock index ac2a7c147..31809dbfa 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -1499,7 +1499,7 @@ dependencies = [ [[package]] name = "indexify-server" -version = "0.2.18" +version = "0.2.19" dependencies = [ "anyhow", "async-stream", diff --git a/server/Cargo.toml b/server/Cargo.toml index 10f37fd7d..92b7f16ff 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexify-server" -version = "0.2.18" +version = "0.2.19" edition = "2021" authors = ["Tensorlake Inc. "] license = "Apache-2.0" @@ -24,7 +24,7 @@ serde = { version = "1.0.217", features = ["derive"] } anyhow = "1.0.95" serde_json = "1.0.135" # https://github.com/rust-rocksdb/rust-rocksdb/issues/881 -rocksdb = {version="0.23.0"} +rocksdb = { version = "0.23.0" } data_model = { path = "data_model" } blob_store = { path = "blob_store" } indexify_utils = { path = "utils" } @@ -51,7 +51,7 @@ bytes = "1.9.0" pin-project-lite = "0.2.16" async-trait = "0.1.85" tokio-stream = "0.1.17" -slatedb = {git="https://github.com/diptanu/slatedb"} +slatedb = { git = "https://github.com/diptanu/slatedb" } rust-embed = { version = "8.5.0", features = ["mime-guess"] } reqwest = { version = "0.12.12", default-features = false, features = [ "json", diff --git a/server/src/routes.rs b/server/src/routes.rs index 1fd0ceda6..80f1bf7fc 100644 --- a/server/src/routes.rs +++ b/server/src/routes.rs @@ -768,7 +768,7 @@ async fn list_outputs( .reader() .invocation_ctx(&namespace, &compute_graph, &invocation_id) .map_err(IndexifyAPIError::internal_error)? - .ok_or(IndexifyAPIError::not_found("Compute Graph not found"))?; + .ok_or(IndexifyAPIError::not_found("invocation not found"))?; if !invocation_ctx.completed { return Ok(Json(FnOutputs { status: "pending".to_string(),