Fix bugtracker and documentation references
These are all out of date. Co-Authored-By: Sergey Skripnick <sskripnick@mirantis.com> Change-Id: I7f59ec145946b316432357f3d0190b65157bcbfb
This commit is contained in:
parent
9d1b8a2a78
commit
9c31aeca60
@ -33,7 +33,7 @@ Project Documentation
|
|||||||
https://docs.openstack.org/openstacksdk/latest/
|
https://docs.openstack.org/openstacksdk/latest/
|
||||||
|
|
||||||
Bug tracker
|
Bug tracker
|
||||||
https://bugs.launchpad.net/python-openstacksdk
|
https://storyboard.openstack.org/#!/project/972
|
||||||
|
|
||||||
Mailing list (prefix subjects with ``[sdk]`` for faster responses)
|
Mailing list (prefix subjects with ``[sdk]`` for faster responses)
|
||||||
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
|
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
|
||||||
|
@ -122,7 +122,7 @@ in the following locations:
|
|||||||
* ``~/.config/openstack``
|
* ``~/.config/openstack``
|
||||||
* ``/etc/openstack``
|
* ``/etc/openstack``
|
||||||
|
|
||||||
More information at https://developer.openstack.org/sdks/python/openstacksdk/users/config
|
More information at https://docs.openstack.org/openstacksdk/latest/user/config/configuration.html
|
||||||
|
|
||||||
openstack.cloud
|
openstack.cloud
|
||||||
===============
|
===============
|
||||||
@ -155,9 +155,8 @@ Create a server using objects configured with the ``clouds.yaml`` file:
|
|||||||
Links
|
Links
|
||||||
=====
|
=====
|
||||||
|
|
||||||
* `Issue Tracker <https://storyboard.openstack.org/#!/project/760>`_
|
* `Issue Tracker <https://storyboard.openstack.org/#!/project/972>`_
|
||||||
* `Code Review <https://review.openstack.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
|
* `Code Review <https://review.openstack.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
|
||||||
* `Documentation <https://developer.openstack.org/sdks/python/openstacksdk/>`_
|
* `Documentation <https://docs.openstack.org/openstacksdk/latest/>`_
|
||||||
* `PyPI <https://pypi.org/project/openstacksdk/>`_
|
* `PyPI <https://pypi.org/project/openstacksdk/>`_
|
||||||
* `Mailing list <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev>`_
|
* `Mailing list <http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev>`_
|
||||||
* `Bugs <https://bugs.launchpad.net/python-openstacksdk>`_
|
|
||||||
|
@ -32,7 +32,7 @@ extensions = [
|
|||||||
|
|
||||||
# openstackdocstheme options
|
# openstackdocstheme options
|
||||||
repository_name = 'openstack/openstacksdk'
|
repository_name = 'openstack/openstacksdk'
|
||||||
bug_project = '760'
|
bug_project = '972'
|
||||||
bug_tag = ''
|
bug_tag = ''
|
||||||
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
html_last_updated_fmt = '%Y-%m-%d %H:%M'
|
||||||
html_theme = 'openstackdocs'
|
html_theme = 'openstackdocs'
|
||||||
@ -77,7 +77,7 @@ pwd = os.getcwd()
|
|||||||
html_context = {"pwd": pwd,
|
html_context = {"pwd": pwd,
|
||||||
"gitsha": gitsha,
|
"gitsha": gitsha,
|
||||||
"bug_tag": bug_tag,
|
"bug_tag": bug_tag,
|
||||||
"bug_project": "python-openstacksdk"}
|
"bug_project": bug_project}
|
||||||
|
|
||||||
# If true, '()' will be appended to :func: etc. cross-reference text.
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
||||||
add_function_parentheses = True
|
add_function_parentheses = True
|
||||||
|
@ -63,7 +63,7 @@ of the cloud configuration to use, .
|
|||||||
.. Create Connection From Environment Variables
|
.. Create Connection From Environment Variables
|
||||||
--------------------------------------------
|
--------------------------------------------
|
||||||
|
|
||||||
TODO(etoews): Document when https://bugs.launchpad.net/os-client-config/+bug/1489617
|
TODO(etoews): Document when https://storyboard.openstack.org/#!/story/1489617
|
||||||
is fixed.
|
is fixed.
|
||||||
|
|
||||||
Next
|
Next
|
||||||
|
@ -258,7 +258,7 @@ class Image(resource.Resource):
|
|||||||
|
|
||||||
# See the following bug report for details on why the checksum
|
# See the following bug report for details on why the checksum
|
||||||
# code may sometimes depend on a second GET call.
|
# code may sometimes depend on a second GET call.
|
||||||
# https://bugs.launchpad.net/python-openstacksdk/+bug/1619675
|
# https://storyboard.openstack.org/#!/story/1619675
|
||||||
checksum = resp.headers.get("Content-MD5")
|
checksum = resp.headers.get("Content-MD5")
|
||||||
|
|
||||||
if checksum is None:
|
if checksum is None:
|
||||||
|
@ -28,7 +28,7 @@ class TestStack(base.BaseFunctionalTest):
|
|||||||
super(TestStack, self).setUp()
|
super(TestStack, self).setUp()
|
||||||
self.skipTest(
|
self.skipTest(
|
||||||
'Orchestration functional tests disabled:'
|
'Orchestration functional tests disabled:'
|
||||||
' https://bugs.launchpad.net/python-openstacksdk/+bug/1525005')
|
' https://storyboard.openstack.org/#!/story/1525005')
|
||||||
self.require_service('orchestration')
|
self.require_service('orchestration')
|
||||||
|
|
||||||
if self.conn.compute.find_keypair(self.NAME) is None:
|
if self.conn.compute.find_keypair(self.NAME) is None:
|
||||||
|
@ -399,7 +399,7 @@ class TestConfig(base.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
class TestExcludedFormattedConfigValue(base.TestCase):
|
class TestExcludedFormattedConfigValue(base.TestCase):
|
||||||
# verify LaunchPad bug #1635696
|
# verify https://storyboard.openstack.org/#!/story/1635696
|
||||||
#
|
#
|
||||||
# get_one_cloud() and get_one_cloud_osc() iterate over config
|
# get_one_cloud() and get_one_cloud_osc() iterate over config
|
||||||
# values and try to expand any variables in those values by
|
# values and try to expand any variables in those values by
|
||||||
|
Loading…
Reference in New Issue
Block a user