File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 77- (Feature) Deprecate Actions
88- (Bugfix) Debug mode
99- (Improvement) Switch to Lease API
10+ - (Bugfix) Fix Member Terminating state discovery
1011
1112## [ 1.2.32] ( https://github.com/arangodb/kube-arangodb/tree/1.2.32 ) (2023-08-07)
1213- (Feature) Backup lifetime - remove Backup once its lifetime has been reached
Original file line number Diff line number Diff line change @@ -295,10 +295,9 @@ func IsPodMarkedForDeletion(pod *core.Pod) bool {
295295 return pod .DeletionTimestamp != nil
296296}
297297
298- // IsPodTerminating returns true if the pod has been marked for deletion
299- // but is still running.
298+ // IsPodTerminating returns true if the pod has been marked for deletion.
300299func IsPodTerminating (pod * core.Pod ) bool {
301- return IsPodMarkedForDeletion (pod ) && pod . Status . Phase == core . PodRunning
300+ return IsPodMarkedForDeletion (pod )
302301}
303302
304303// getPodCondition returns the condition of given type in the given status.
You can’t perform that action at this time.
0 commit comments