Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix checking whether a disk can be cleared during autopart #5943

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def can_remove(self, storage, device):
for disk in device.disks:
# this will not include disks with hidden formats like multipath
# and firmware raid member disks
if self.drives_to_clear and disk.name not in self.drives_to_clear:
if self.drives_to_clear and disk.device_id not in self.drives_to_clear:
return False

if not self.clear_non_existent:
Expand Down Expand Up @@ -113,7 +113,7 @@ def can_remove(self, storage, device):
return False

if self.initialization_mode == CLEAR_PARTITIONS_LIST and \
device.name not in self.devices_to_clear:
device.device_id not in self.devices_to_clear:
return False

return True
Expand Down
Loading