summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-05-02 04:23:04 +0000
committerGerrit Code Review <review@openstack.org>2019-05-02 04:23:04 +0000
commit209e1801ace8ef68b8061a194a89b28cc72152c7 (patch)
tree658fe1343482e7e4398435616bbd58bc24e41b56
parent88c660dbe8730dc5cf0e45ea1bb0171fed0df20c (diff)
parent9a91b4ad38ac5ff3ab2e2cdc0dd63727f0e90691 (diff)
downloadpython-neutronclient-209e1801ace8ef68b8061a194a89b28cc72152c7.tar.gz
Merge "Replace git.openstack.org URLs with opendev.org URLs"
-rw-r--r--README.rst2
-rw-r--r--doc/source/contributor/transition_to_osc.rst10
-rw-r--r--neutronclient/neutron/v2_0/qos/minimum_bandwidth_rule.py2
-rw-r--r--neutronclient/tests/functional/hooks/fwaas2
-rw-r--r--neutronclient/tests/functional/hooks/vpnaas2
-rw-r--r--tox.ini2
6 files changed, 10 insertions, 10 deletions
diff --git a/README.rst b/README.rst
index cec75c9..6f57c69 100644
--- a/README.rst
+++ b/README.rst
@@ -32,6 +32,6 @@ provides a Python API (the ``neutronclient`` module) and a command-line tool
.. _Launchpad project: https://launchpad.net/python-neutronclient
.. _Blueprints: https://blueprints.launchpad.net/python-neutronclient
.. _Bugs: https://bugs.launchpad.net/python-neutronclient
-.. _Source: https://git.openstack.org/cgit/openstack/python-neutronclient
+.. _Source: https://opendev.org/openstack/python-neutronclient
.. _Developer's Guide: http://docs.openstack.org/infra/manual/developers.html
.. _Release Notes: https://docs.openstack.org/releasenotes/python-neutronclient
diff --git a/doc/source/contributor/transition_to_osc.rst b/doc/source/contributor/transition_to_osc.rst
index d64658d..b745d2f 100644
--- a/doc/source/contributor/transition_to_osc.rst
+++ b/doc/source/contributor/transition_to_osc.rst
@@ -29,7 +29,7 @@ command-line interface (CLI), to the
`OpenStack Client (OSC) <https://github.com/openstack/python-openstackclient>`_
and the `OpenStack Python SDK <https://github.com/openstack/openstacksdk>`_.
This transition is being guided by the
-`Deprecate individual CLIs in favour of OSC <https://review.openstack.org/#/c/243348/>`_
+`Deprecate individual CLIs in favour of OSC <https://review.opendev.org/#/c/243348/>`_
OpenStack spec. See the `Neutron RFE <https://bugs.launchpad.net/neutron/+bug/1521291>`_,
`OSC neutron support etherpad <https://etherpad.openstack.org/p/osc-neutron-support>`_ and
details below for the overall progress of this transition.
@@ -56,16 +56,16 @@ Transition Steps
----------------
1. **Done:** OSC adds OpenStack Python SDK as a dependency. See the following
- patch set: https://review.openstack.org/#/c/138745/
+ patch set: https://review.opendev.org/#/c/138745/
2. **Done:** OSC switches its networking support for the
`network <https://docs.openstack.org/python-openstackclient/latest/cli/command-objects/network.html>`_
command object to use the OpenStack Python SDK instead of the neutron
client's Python library. See the following patch set:
- https://review.openstack.org/#/c/253348/
+ https://review.opendev.org/#/c/253348/
3. **Done:** OSC removes its python-neutronclient dependency.
- See the following patch set: https://review.openstack.org/#/c/255545/
+ See the following patch set: https://review.opendev.org/#/c/255545/
4. **In Progress:** OpenStack Python SDK releases version 1.0 to guarantee
backwards compatibility of its networking support and OSC updates
@@ -99,7 +99,7 @@ Transition Steps
developer guide section below for more information on this step.
7. **In Progress:** Deprecate the ``neutron`` CLI. Running the CLI after
- it has been `deprecated <https://review.openstack.org/#/c/393903/>`_
+ it has been `deprecated <https://review.opendev.org/#/c/393903/>`_
will issue a warning message:
``neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead.``
In addition, no new features will be added to the CLI, though fixes to
diff --git a/neutronclient/neutron/v2_0/qos/minimum_bandwidth_rule.py b/neutronclient/neutron/v2_0/qos/minimum_bandwidth_rule.py
index cc64549..0dda0fb 100644
--- a/neutronclient/neutron/v2_0/qos/minimum_bandwidth_rule.py
+++ b/neutronclient/neutron/v2_0/qos/minimum_bandwidth_rule.py
@@ -31,7 +31,7 @@ def add_minimum_bandwidth_arguments(parser):
help=_('QoS minimum bandwidth assurance, expressed in kilobits '
'per second.'))
# NOTE(ralonsoh): the only direction implemented is "egress". Please,
- # refer to the spec (https://review.openstack.org/#/c/316082/).
+ # refer to the spec (https://review.opendev.org/#/c/316082/).
parser.add_argument(
'--direction',
# NOTE(ihrachys): though server picks the default for us (egress), it's
diff --git a/neutronclient/tests/functional/hooks/fwaas b/neutronclient/tests/functional/hooks/fwaas
index 5292897..d9fc704 100644
--- a/neutronclient/tests/functional/hooks/fwaas
+++ b/neutronclient/tests/functional/hooks/fwaas
@@ -1,2 +1,2 @@
-enable_plugin neutron-fwaas https://git.openstack.org/openstack/neutron-fwaas
+enable_plugin neutron-fwaas https://opendev.org/openstack/neutron-fwaas
enable_service q-fwaas
diff --git a/neutronclient/tests/functional/hooks/vpnaas b/neutronclient/tests/functional/hooks/vpnaas
index b121a6f..8b94b37 100644
--- a/neutronclient/tests/functional/hooks/vpnaas
+++ b/neutronclient/tests/functional/hooks/vpnaas
@@ -1 +1 @@
-enable_plugin neutron-vpnaas https://git.openstack.org/openstack/neutron-vpnaas
+enable_plugin neutron-vpnaas https://opendev.org/openstack/neutron-vpnaas
diff --git a/tox.ini b/tox.ini
index d4ba1b5..a5f18cc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -12,7 +12,7 @@ setenv = VIRTUAL_ENV={envdir}
PYTHONWARNINGS=default::DeprecationWarning
usedevelop = True
install_command = pip install {opts} {packages}
-deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
+deps = -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
# Delete bytecodes from normal directories before running tests.