Skip to content

Commit

Permalink
chore(release) preparing for server=0.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousben committed Jan 17, 2025
1 parent d0f0114 commit 09aea87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion server/Cargo.lock

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

6 changes: 3 additions & 3 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indexify-server"
version = "0.2.18"
version = "0.2.19"
edition = "2021"
authors = ["Tensorlake Inc. <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -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" }
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion server/src/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 09aea87

Please sign in to comment.