Don't use default=None for config options
In the config module default=None is set as the default value, so it isn't necessary to set it again when doing config options. Change-Id: I09989ab679d249a9f7dea6af5d53c14dd1726e09 Closes-Bug: #1323975
This commit is contained in:
		
				
					committed by
					
						
						Sean McGinnis
					
				
			
			
				
	
			
			
			
						parent
						
							cbb55074de
						
					
				
				
					commit
					db8076be96
				
			@@ -50,7 +50,6 @@ sf_opts = [
 | 
			
		||||
                help='Allow tenants to specify QOS on create'),
 | 
			
		||||
 | 
			
		||||
    cfg.StrOpt('sf_account_prefix',
 | 
			
		||||
               default=None,
 | 
			
		||||
               help='Create SolidFire accounts with this prefix. Any string '
 | 
			
		||||
                    'can be used here, but the string \"hostname\" is special '
 | 
			
		||||
                    'and will create a prefix using the cinder node hostname '
 | 
			
		||||
@@ -74,7 +73,6 @@ sf_opts = [
 | 
			
		||||
                     'glance and qemu-conversion on subsequent calls.'),
 | 
			
		||||
 | 
			
		||||
    cfg.StrOpt('sf_svip',
 | 
			
		||||
               default=None,
 | 
			
		||||
               help='Overrides default cluster SVIP with the one specified. '
 | 
			
		||||
                    'This is required or deployments that have implemented '
 | 
			
		||||
                    'the use of VLANs for iSCSI networks in their cloud.'),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user