From 9cacd2c853a3351221bbffe1c9001b791ab409e8 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Thu, 13 Aug 2020 09:46:11 -0400 Subject: [PATCH] No need to handle FSError when updating size info. --- library/blivet.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/blivet.py b/library/blivet.py index 7083c3a2..76001ebb 100644 --- a/library/blivet.py +++ b/library/blivet.py @@ -234,8 +234,6 @@ def _resize(self): if size and self._device.size != size: try: self._device.format.update_size_info() - except FSError: - raise BlivetAnsibleError("volume '%s' cannot be resize because it needs repair" % self._device.name) except AttributeError: pass