We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92dd769 commit ba6e9d8Copy full SHA for ba6e9d8
crates/stackable-operator/src/status/condition/deployment.rs
@@ -32,11 +32,11 @@ impl DeploymentConditionBuilder {
32
fn available(&self) -> ClusterCondition {
33
let mut available = ClusterConditionStatus::True;
34
let mut unavailable_resources = vec![];
35
- for dplmt in &self.deployments {
36
- let current_status = Self::deployment_available(dplmt);
+ for deployment in &self.deployments {
+ let current_status = Self::deployment_available(deployment);
37
38
if current_status != ClusterConditionStatus::True {
39
- unavailable_resources.push(dplmt.name_any())
+ unavailable_resources.push(deployment.name_any())
40
}
41
42
available = cmp::max(available, current_status);
0 commit comments