Skip to content

Commit 8e7e522

Browse files
committed
Bugfix: return value switcheroo (#574)
1 parent 2b13124 commit 8e7e522

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cluster_resources.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ impl ClusterResourceApplyStrategy {
142142
fn delete_orphans(&self) -> bool {
143143
match self {
144144
ClusterResourceApplyStrategy::NoApply
145-
| ClusterResourceApplyStrategy::ReconciliationPaused => true,
145+
| ClusterResourceApplyStrategy::ReconciliationPaused => false,
146146
ClusterResourceApplyStrategy::ClusterStopped
147-
| ClusterResourceApplyStrategy::Default => false,
147+
| ClusterResourceApplyStrategy::Default => true,
148148
}
149149
}
150150
}

0 commit comments

Comments
 (0)