Skip to content

Commit

Permalink
Do not ignore "Image out-of-sync" internal LVs
Browse files Browse the repository at this point in the history
These are still "valid" existing internal RAID LVs just not synced
yet.
  • Loading branch information
vojtechtrefny committed Jul 26, 2018
1 parent 8f8414d commit 46580db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/devices/lvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ def get_type(cls, lv_attr, lv_name): # pylint: disable=unused-argument
attr_letters = {cls.data: ("T", "C"),
cls.meta: ("e",),
cls.log: ("l", "L"),
cls.image: ("i",),
cls.image: ("i", "I"),
cls.origin: ("o",),
cls.cache_pool: ("C",)}

Expand Down

0 comments on commit 46580db

Please sign in to comment.