local_settings needs 2.76% more ',' and an '_'
While updating my local_settings.py file to more closely represent the local_settings.py.example file, I noticed a small error (that's normally commented out). The VHD openstack image backend image format isn't being translated due to a missing underscore. I also noticed a few "missing" commas on the last element in a few lists and dicts. Change-Id: Ifef05c23921b88d7fc7f331cf293bbbd608af704 Closes-Bug: 1552955
This commit is contained in:
parent
721c963b9d
commit
bfdc27ae69
@ -57,7 +57,7 @@ WEBROOT = '/'
|
||||
# "data-processing": 1.1,
|
||||
# "identity": 3,
|
||||
# "volume": 2,
|
||||
# "compute": 2
|
||||
# "compute": 2,
|
||||
#}
|
||||
|
||||
# Set this to True if running on multi-domain model. When this is enabled, it
|
||||
@ -127,13 +127,13 @@ SECRET_KEY = secret_key.generate_or_read_from_file(
|
||||
# 'default': {
|
||||
# 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
||||
# 'LOCATION': '127.0.0.1:11211',
|
||||
# }
|
||||
# },
|
||||
#}
|
||||
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
# Send email to the console by default
|
||||
@ -176,7 +176,7 @@ OPENSTACK_KEYSTONE_DEFAULT_ROLE = "_member_"
|
||||
# ("oidc", _("OpenID Connect")),
|
||||
# ("saml2", _("Security Assertion Markup Language")),
|
||||
# ("acme_oidc", "ACME - OpenID Connect"),
|
||||
# ("acme_saml2", "ACME - SAML2")
|
||||
# ("acme_saml2", "ACME - SAML2"),
|
||||
#)
|
||||
|
||||
# A dictionary of specific identity provider and federation protocol
|
||||
@ -188,7 +188,7 @@ OPENSTACK_KEYSTONE_DEFAULT_ROLE = "_member_"
|
||||
# NOTE: The value is expected to be a tuple formatted as: (<idp_id>, <protocol_id>).
|
||||
#WEBSSO_IDP_MAPPING = {
|
||||
# "acme_oidc": ("acme", "oidc"),
|
||||
# "acme_saml2": ("acme", "saml2")
|
||||
# "acme_saml2": ("acme", "saml2"),
|
||||
#}
|
||||
|
||||
# Disable SSL certificate checks (useful for self-signed certificates):
|
||||
@ -233,7 +233,7 @@ OPENSTACK_KEYSTONE_BACKEND = {
|
||||
# A dictionary of settings which can be used to provide the default values for
|
||||
# properties found in the Launch Instance modal.
|
||||
#LAUNCH_INSTANCE_DEFAULTS = {
|
||||
# 'config_drive': False
|
||||
# 'config_drive': False,
|
||||
#}
|
||||
|
||||
# The Xen Hypervisor has the ability to set the mount point for volumes
|
||||
@ -294,7 +294,7 @@ OPENSTACK_NEUTRON_NETWORK = {
|
||||
# port.
|
||||
# VNIC types include 'normal', 'macvtap' and 'direct'.
|
||||
# Set to empty list or None to disable VNIC type selection.
|
||||
'supported_vnic_types': ['*']
|
||||
'supported_vnic_types': ['*'],
|
||||
}
|
||||
|
||||
# The OPENSTACK_HEAT_STACK settings can be used to disable password
|
||||
@ -318,9 +318,9 @@ OPENSTACK_HEAT_STACK = {
|
||||
# ('qcow2', _('QCOW2 - QEMU Emulator')),
|
||||
# ('raw', _('Raw')),
|
||||
# ('vdi', _('VDI - Virtual Disk Image')),
|
||||
# ('vhd', ('VHD - Virtual Hard Disk')),
|
||||
# ('vhd', _('VHD - Virtual Hard Disk')),
|
||||
# ('vmdk', _('VMDK - Virtual Machine Disk')),
|
||||
# ]
|
||||
# ],
|
||||
#}
|
||||
|
||||
# The IMAGE_CUSTOM_PROPERTY_TITLES settings is used to customize the titles for
|
||||
@ -540,7 +540,7 @@ LOGGING = {
|
||||
'handlers': ['null'],
|
||||
'propagate': False,
|
||||
},
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
# 'direction' should not be specified for all_tcp/udp/icmp.
|
||||
|
Loading…
Reference in New Issue
Block a user