From e5ef39604cb025f341d1ff4ea92d46a2caeb8108 Mon Sep 17 00:00:00 2001 From: Gorka Eguileor Date: Wed, 1 Dec 2021 11:39:17 +0100 Subject: [PATCH] Improve no_snapshot_gb_quota description Small improvemente to the description of the ``no_snapshot_gb_quota`` configuration option to clarify what it does and its default. TrivialPatch Change-Id: Iad01d3b011472716a5429219f6c75be2ff670cab --- cinder/common/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cinder/common/config.py b/cinder/common/config.py index ca1d3e118b5..fd7249f9f3c 100644 --- a/cinder/common/config.py +++ b/cinder/common/config.py @@ -129,7 +129,9 @@ global_opts = [ 'with its options'), cfg.BoolOpt('no_snapshot_gb_quota', default=False, - help='Whether snapshots count against gigabyte quota'), + help="Whether snapshots sizes count against global and per " + "volume type gigabyte quotas. By default snapshots' " + "sizes are counted."), cfg.StrOpt('transfer_api_class', default='cinder.transfer.api.API', help='The full class name of the volume transfer API class'),