]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
RBD: use user-configured value for chunk size
authorJon Bernard <jobernar@redhat.com>
Wed, 29 Jul 2015 15:45:39 +0000 (11:45 -0400)
committerJon Bernard <jobernar@redhat.com>
Fri, 31 Jul 2015 17:11:46 +0000 (13:11 -0400)
commit4a46b61114cfb81dac08a0289b509f3885f4fa8a
treefb16b19d2b17c6b03ce641fbd1f999beac09b229
parentd9c91126cd25458269583a88257d4494b5a8a55f
RBD: use user-configured value for chunk size

This patch allows a user to override the default chunk size in
cinder.conf.  When the driver is initialized, the default configuration
values in CONF are merged with the user-provided overrides into
self.configuration.  In most cases, self.configuration is used unless
the original default value is needed.  In this case, CONF was mistakenly
used when self.configuration was intended, which has the effect of
preventing the user from overriding the default chunk size by ignoring
the provided value.

Related-Bug: #1477706
Change-Id: I66a99950b7c4080de932be7ddac2f1595b9d59f4
cinder/volume/drivers/rbd.py