This is not really safe to turn on yet, as there
are RBD features which are incompatible with
multi-attach that must be managed from Cinder.
Disable multi-attach for now until code to handle
that is ready.
Change-Id: I17da2f4e897178762d1c3d1302d2d79ae28e349c
Related-Bug: #
1519227
Partial-Bug: #
1535815
total_capacity_gb=27,
free_capacity_gb=26,
reserved_percentage=0,
- multiattach=True)
+ multiattach=False)
actual = self.driver.get_volume_stats(True)
client.cluster.mon_command.assert_called_once_with(
total_capacity_gb='unknown',
free_capacity_gb='unknown',
reserved_percentage=0,
- multiattach=True)
+ multiattach=False)
actual = self.driver.get_volume_stats(True)
client.cluster.mon_command.assert_called_once_with(
'total_capacity_gb': 'unknown',
'free_capacity_gb': 'unknown',
'reserved_percentage': 0,
- 'multiattach': True,
+ 'multiattach': False,
}
backend_name = self.configuration.safe_get('volume_backend_name')
stats['volume_backend_name'] = backend_name or 'RBD'