Skip to content

Commit

Permalink
add stoppable param
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourav Maji committed Sep 26, 2024
1 parent 2a23ad1 commit 119d700
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6526,7 +6526,7 @@ public InstanceRemovableStatuses getAggregatedHealthStatus(
}

Map<String, String> nonStoppableInstances = new HashMap<>();
List<String> stoppableInstances = new ArrayList<>();
List<String> stoppableInstances = new ArrayList<>(toBeStoppedInstances);
statuses.setNonStoppableInstances(nonStoppableInstances);
statuses.setStoppableInstances(stoppableInstances);

Expand Down

0 comments on commit 119d700

Please sign in to comment.