Skip to content

Commit 4522338

Browse files
committed
Update to op-rs 0.79.0
1 parent f462caf commit 4522338

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ prost = "0.13"
2121
prost-types = "0.13"
2222
serde = "1.0"
2323
snafu = "0.8"
24-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.78.0" }
24+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.79.0" }
2525
strum = { version = "0.26", features = ["derive"] }
2626
socket2 = { version = "0.5", features = ["all"] }
2727
tokio = { version = "1.40", features = ["full"] }
@@ -33,4 +33,4 @@ tracing = "0.1.40"
3333

3434
[patch."https://github.com/stackabletech/operator-rs.git"]
3535
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
36-
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
36+
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }

crate-hashes.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/operator-binary/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ async fn main() -> anyhow::Result<()> {
8585
built_info::RUSTC_VERSION,
8686
);
8787
let client =
88-
stackable_operator::client::create_client(Some(OPERATOR_KEY.to_string())).await?;
88+
stackable_operator::client::initialize_operator(Some(OPERATOR_KEY.to_string()))
89+
.await?;
8990
if csi_endpoint
9091
.symlink_metadata()
9192
.map_or(false, |meta| meta.file_type().is_socket())

0 commit comments

Comments
 (0)