From e909cfd67eceea396c63acd7563bed1f5f9979f4 Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Thu, 18 Jul 2013 16:42:34 +0900 Subject: [PATCH] Fix duplicate config options This is causing an error in the config file tool generator. Removed them since they are registered in cinder.api.common Change-Id: I23988d5133bbb95637dd9514813009ea8b460982 --- cinder/common/config.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cinder/common/config.py b/cinder/common/config.py index 0273f8661..32b6092a3 100644 --- a/cinder/common/config.py +++ b/cinder/common/config.py @@ -138,15 +138,6 @@ global_opts = [ cfg.MultiStrOpt('osapi_volume_extension', default=['cinder.api.contrib.standard_extensions'], help='osapi volume extension to load'), - cfg.StrOpt('osapi_volume_base_URL', - default=None, - help='Base URL that will be presented to users in links ' - 'to the OpenStack Volume API', - deprecated_name='osapi_compute_link_prefix'), - cfg.IntOpt('osapi_max_limit', - default=1000, - help='the maximum number of items returned in a single ' - 'response from a collection resource'), cfg.StrOpt('volume_manager', default='cinder.volume.manager.VolumeManager', help='full class name for the Manager for volume'), -- 2.45.2