Skip to content

Commit

Permalink
v0.1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
jopemachine committed Jan 9, 2024
1 parent c868349 commit 452fde5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 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 @@ -18,7 +18,7 @@ default-members = [
]

[workspace.package]
version = "0.1.22"
version = "0.1.23"
authors = ["Lablup Inc."]
edition = "2021"
description = "Experimental High level Raft framework"
Expand Down
6 changes: 3 additions & 3 deletions binding/python/Cargo.lock

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

4 changes: 2 additions & 2 deletions binding/python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raftify-py"
version = "0.1.22"
version = "0.1.23"
authors = ["Lablup Inc."]
license = "Apache-2.0"
repository = "https://github.com/lablup/raftify"
Expand All @@ -17,7 +17,7 @@ edition = "2021"
pyo3 = { git = "https://github.com/jopemachine/pyo3", features = ["extension-module", "multiple-pymethods"] }
tokio = { version = "1.4", features = ["full"] }
async-trait = "0.1.48"
raftify = { version = "0.1.22", default-features = false }
raftify = { version = "0.1.23", default-features = false }
slog = { version = "2.2", features = ["max_level_trace", "release_max_level_trace"] }
slog-envlogger = "2.1.0"
slog-term = "2.9.0"
Expand Down
2 changes: 1 addition & 1 deletion binding/python/src/bindings/raft_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ impl PyRaftServiceClient {
.unwrap()
.into_inner();

return Ok(response.result);
return Ok(response.result_json);
}

pub async fn get_peers(&mut self) -> PyResult<String> {
Expand Down

0 comments on commit 452fde5

Please sign in to comment.