Remove dependency on oslo_config

Per the note in requirements.txt, we do not want to depend on any oslo
library. Fix the accidental inclusion of this library.

Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: I0287fc2493831e9b52790f7d6db13b8a4ed7158e
This commit is contained in:
Stephen Finucane 2023-12-14 10:44:12 +00:00
parent 2bc0f5afb0
commit b5ddc0732e
1 changed files with 2 additions and 3 deletions

View File

@ -10,8 +10,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_config import types
from keystoneauth1 import adapter
from keystoneauth1.loading import _utils
from keystoneauth1.loading import base
@ -166,12 +164,13 @@ class Adapter(base.BaseLoader):
cfg.ListOpt('retriable-status-codes',
deprecated_opts=deprecated_opts.get(
'retriable-status-codes'),
item_type=types.Integer(),
item_type=cfg.types.Integer(),
help='List of retriable HTTP status codes that '
'should be retried. If not set default to '
' [503]'
),
]
if include_deprecated:
opts += [
cfg.StrOpt('interface',