Skip to content

Commit e81e9c1

Browse files
update k8s-controller
1 parent 2be25f1 commit e81e9c1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Cargo.lock

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

src/orchestratord/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ chrono = { version = "0.4.39", default-features = false }
1717
clap = { version = "4.5.23", features = ["derive"] }
1818
futures = "0.3.31"
1919
http = "1.2.0"
20-
k8s-controller = "0.6.1"
20+
k8s-controller = "0.8.0"
2121
k8s-openapi = { version = "0.26.0", features = ["v1_31"] }
2222
kube = { version = "2.0.1", default-features = false, features = ["client", "runtime", "ws"] }
2323
maplit = "1.0.2"

src/orchestratord/src/controller/materialize.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ impl k8s_controller::Context for Context {
267267
type Resource = Materialize;
268268
type Error = Error;
269269

270-
const FINALIZER_NAME: &'static str = "orchestratord.materialize.cloud/materialize";
270+
const FINALIZER_NAME: Option<&'static str> =
271+
Some("orchestratord.materialize.cloud/materialize");
271272

272273
#[instrument(fields(organization_name=mz.name_unchecked()))]
273274
async fn apply(

0 commit comments

Comments
 (0)