Skip to content

Instantly share code, notes, and snippets.

@stajkowski
Last active March 23, 2016 17:18
Show Gist options
  • Save stajkowski/46662d6e26f51d7efa46 to your computer and use it in GitHub Desktop.
Save stajkowski/46662d6e26f51d7efa46 to your computer and use it in GitHub Desktop.
oslo
cfg.StrOpt('api_extensions_path', default="<EDIT>",
help=_("The path for API extensions. "
"Note that this can be a colon-separated list of paths. "
"The __path__ of neutron.extensions is appended to "
"this, so if your extensions are in there you don't "
"need to specify them here."),
sample_default='extensions:/path/to/more/exts:/even/more/exts',
required=True),
# The path for API extensions. Note that this can be colon-separated list
# of paths. The __path__ of neutron.extensions is appended to this, so
# if your extensions are in there you don't need to specify them here.
# Note: Required option - Example: api_extensions_path = extensions:/path/to/more/exts:/even/more/exts
api_extensions_path = <EDIT>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment