We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 73bdb93 + e792cde commit f7d535bCopy full SHA for f7d535b
source/rhoas/src/main/java/com/openshift/cloud/controllers/AbstractCloudServicesController.java
@@ -68,7 +68,7 @@ private boolean shouldProcess(T resource) {
68
69
List<KafkaCondition> conditions = getConditions(resource);
70
71
- if (conditions == null | conditions.isEmpty()) {
+ if (conditions == null || conditions.isEmpty()) {
72
return true;
73
}
74
@@ -80,13 +80,11 @@ private boolean shouldProcess(T resource) {
80
81
82
if (Status.True.equals(finishedCondition.getStatus())) {
83
- //everything is up to date and the resource had finished, then skip
+ // everything is up to date and the resource had finished, then skip
84
return false;
85
} else {
86
87
88
-
89
90
91
92
private List<KafkaCondition> getConditions(T resource) {
0 commit comments