diff options
-rw-r--r-- | README.rst | 6 | ||||
-rw-r--r-- | doc/source/reference/index.rst | 6 | ||||
-rw-r--r-- | oslo_middleware/cors.py | 2 | ||||
-rw-r--r-- | tox.ini | 2 |
4 files changed, 8 insertions, 8 deletions
@@ -1,6 +1,6 @@ -=================================== +=============== oslo.middleware -=================================== +=============== .. image:: https://img.shields.io/pypi/v/oslo.middleware.svg :target: https://pypi.org/project/oslo.middleware/ @@ -17,6 +17,6 @@ and support for limiting size/connection etc. * Free software: Apache license * Documentation: https://docs.openstack.org/oslo.middleware/latest/ -* Source: https://git.openstack.org/cgit/openstack/oslo.middleware +* Source: https://opendev.org/openstack/oslo.middleware * Bugs: https://bugs.launchpad.net/oslo.middleware * Release notes: https://docs.openstack.org/releasenotes/oslo.middleware/ diff --git a/doc/source/reference/index.rst b/doc/source/reference/index.rst index 5a2d80a..7c03c1a 100644 --- a/doc/source/reference/index.rst +++ b/doc/source/reference/index.rst @@ -1,6 +1,6 @@ -============================== - oslo.middleware Reference -============================== +========================= +oslo.middleware Reference +========================= .. toctree:: :glob: diff --git a/oslo_middleware/cors.py b/oslo_middleware/cors.py index 17ff6d0..a01e21e 100644 --- a/oslo_middleware/cors.py +++ b/oslo_middleware/cors.py @@ -210,7 +210,7 @@ class CORS(base.ConfigurableMiddleware): # NOTE(dims): Support older code that still passes in # a string for allowed_origin instead of a list if isinstance(allowed_origin, six.string_types): - # TODO(krotscheck): https://review.openstack.org/#/c/312687/ + # TODO(krotscheck): https://review.opendev.org/#/c/312687/ LOG.warning('DEPRECATED: The `allowed_origin` keyword argument in ' '`add_origin()` should be a list, found String.') allowed_origin = [allowed_origin] @@ -7,7 +7,7 @@ setenv = VIRTUAL_ENV={envdir} install_command = pip install {opts} {packages} deps = - -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} -r{toxinidir}/test-requirements.txt commands = stestr run --slowest {posargs} |