Skip to content

Commit 6b18ce5

Browse files
committed
use upstream tag
1 parent 427d293 commit 6b18ce5

File tree

6 files changed

+76
-37
lines changed

6 files changed

+76
-37
lines changed

Cargo.lock

Lines changed: 70 additions & 31 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
@@ -31,8 +31,8 @@ tokio = { version = "1.40", features = ["full"] }
3131
tokio-zookeeper = "0.4"
3232
tracing = "0.1"
3333

34-
[patch."https://github.com/stackabletech/operator-rs"]
35-
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
34+
# [patch."https://github.com/stackabletech/operator-rs"]
35+
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
3636

3737
[patch.crates-io]
3838
# tokio-zookeeper = { path = "../tokio-zookeeper" }

rust/operator-binary/src/crd/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ use stackable_operator::{
2727
product_logging::{self, spec::Logging},
2828
role_utils::{GenericRoleConfig, JavaCommonConfig, Role, RoleGroup, RoleGroupRef},
2929
schemars::{self, JsonSchema},
30+
shared::time::Duration,
3031
status::condition::{ClusterCondition, HasStatusCondition},
31-
time::Duration,
3232
utils::cluster_info::KubernetesClusterInfo,
3333
versioned::versioned,
3434
};

rust/operator-binary/src/crd/security.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use stackable_operator::{
2222
client::Client,
2323
crd::authentication::core,
2424
k8s_openapi::api::core::v1::Volume,
25-
time::Duration,
25+
shared::time::Duration,
2626
};
2727

2828
use crate::{

rust/operator-binary/src/zk_controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ use stackable_operator::{
6565
},
6666
},
6767
role_utils::RoleGroupRef,
68+
shared::time::Duration,
6869
status::condition::{
6970
compute_conditions, operations::ClusterOperationsConditionBuilder,
7071
statefulset::StatefulSetConditionBuilder,
7172
},
72-
time::Duration,
7373
utils::{COMMON_BASH_TRAP_FUNCTIONS, cluster_info::KubernetesClusterInfo},
7474
};
7575
use strum::{EnumDiscriminants, IntoStaticStr};

rust/operator-binary/src/znode_controller.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use stackable_operator::{
1717
runtime::{controller, finalizer, reflector::ObjectRef},
1818
},
1919
logging::controller::ReconcilerError,
20-
time::Duration,
20+
shared::time::Duration,
2121
utils::cluster_info::KubernetesClusterInfo,
2222
};
2323
use strum::{EnumDiscriminants, IntoStaticStr};

0 commit comments

Comments
 (0)