Recommend unversioned for endpoint-override

Update the help string for Adapter's endpoint-override conf option to
recommend specifying the unversioned endpoint.  This is so that ksa can
do the appropriate endpoint discovery itself.

Change-Id: I6178a7c0b80e22cc48f049efc24d1c74f26d4b2d
This commit is contained in:
Eric Fried 2017-09-05 10:34:31 -05:00
parent 1de528ece2
commit e495c33d79
1 changed files with 5 additions and 1 deletions

View File

@ -110,7 +110,11 @@ class Adapter(base.BaseLoader):
deprecated_opts=deprecated_opts.get(
'endpoint-override'),
help='Always use this endpoint URL for requests '
'for this client.'),
'for this client. NOTE: The unversioned '
'endpoint should be specified here; to '
'request a particular API version, use the '
'`version`, `min-version`, and/or '
'`max-version` options.'),
cfg.StrOpt('version',
deprecated_opts=deprecated_opts.get('version'),
help='Minimum Major API version within a given '