Skip to content

Commit

Permalink
Deactivate formatting prior to volume resize.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwlehman committed Aug 13, 2020
1 parent 85c2902 commit a205fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/blivet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1186,7 +1186,7 @@ def action_dict(action):
result['packages'] = b.packages[:]

for action in scheduled:
if action.is_destroy and action.is_format and action.format.exists and \
if (action.is_destroy or action.is_resize) and action.is_format and action.format.exists and \
(action.format.mountable or action.format.type == "swap"):
action.format.teardown()

Expand Down

0 comments on commit a205fe8

Please sign in to comment.