manila/releasenotes/notes/bug-1946990-fix-ignored-neutron-opts-c438a089de9e2066.yaml
Takashi Kajinami 2fd701e657 Fix ignored [neutron] options
The following three options have had no effect since implementation
to use these parameters were unintentionally removed by [1].
 - url
 - url_timeout
 - auth_strategy

This fixes/deprecates these parameters. The details are as follows.

1) url
This option is fixed and now overrides the endpoint url which Manila
uses to connect neutron. Default of the url option is changed to keep
the existing behavior by default.

2) url_timeout
This option is just deprecated, because there is already the timeout
parameter in keystoneauth to define request timeout.

3) auth_strategy
This option is also deprecated. The auth mechanism should be defined
by the auth_type parameter in keystoneauth instead.

[1] 7fc492ea79

Closes-Bug: #1946990
Change-Id: I34cfff78d70a5e1cbd2ee75da36b692cb19a45a4
2021-10-13 23:55:05 +09:00

13 lines
449 B
YAML

---
deprecations:
- |
The ``[neutron] url_timeout`` option and the ``[neutron] auth_strategy``
option have been deprecated and will be removed in a future release.
These two options have had no effect since 2.0.0 .
fixes:
- |
`Bug #1946990 <https://bugs.launchpad.net/manila/+bug/1946990>`_: Fix
the ignored ``[neutorn] url`` option. Now the parameter overrides
the endpoint url which Manila uses to access Neutron API.