Merge "Change unsupported fileno() LOG to debug"

This commit is contained in:
Zuul 2022-04-01 13:40:25 +00:00 committed by Gerrit Code Review
commit 18d98d59f4

View File

@ -736,8 +736,8 @@ class ChunkedBackupDriver(driver.BackupDriver, metaclass=abc.ABCMeta):
try:
fileno = volume_file.fileno()
except IOError:
LOG.info("volume_file does not support fileno() so skipping "
"fsync()")
LOG.debug("volume_file does not support fileno() so skipping "
"fsync()")
else:
os.fsync(fileno)