We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831be1c commit c759175Copy full SHA for c759175
src/ugrd/fs/mounts.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '4.15.0'
+__version__ = '4.15.1'
3
4
from pathlib import Path
5
from zenlib.util import contains, pretty_print
@@ -354,6 +354,7 @@ def _autodetect_dm(self, mountpoint) -> None:
354
for slave in self._dm_info[dm_num]['slaves']:
355
try:
356
_autodetect_dm(self, '/dev/' + slave)
357
+ self.logger.ingo("[%s] Autodetected device mapper container: %s" % (source_device.name, slave))
358
except KeyError:
359
self.logger.debug("Slave does not appear to be a DM device: %s" % slave)
360
0 commit comments