From 10469bf39c374ef46c2df08c7ff150151b057463 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 31 May 2017 07:39:11 -0700 Subject: [PATCH] Fixed docs job failure Removed one orphan reference of unclear value (pudb), and moved another one into the text itself. This allows to pass gate with new sphinx. Change-Id: I943d9b0904731ebcc4d3fd3a9b686fd08b03c48b Closes-Bug: #1694614 (cherry picked from commit 6cfe39708fd8a25d06335780d8bcc6afb4224443) --- TESTING.rst | 2 -- doc/source/devref/provisioning_blocks.rst | 12 ++++-------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/TESTING.rst b/TESTING.rst index e5c09282e38..408255bf04a 100644 --- a/TESTING.rst +++ b/TESTING.rst @@ -605,6 +605,4 @@ TBD: how to do this with tox. References ~~~~~~~~~~ -.. [#pudb] PUDB debugger: - https://pypi.python.org/pypi/pudb .. _file-based-sqlite: http://lists.openstack.org/pipermail/openstack-dev/2016-July/099861.html diff --git a/doc/source/devref/provisioning_blocks.rst b/doc/source/devref/provisioning_blocks.rst index e5f764c05d1..ed8ef8df799 100644 --- a/doc/source/devref/provisioning_blocks.rst +++ b/doc/source/devref/provisioning_blocks.rst @@ -32,8 +32,10 @@ When that entity has finishing provisioning, we just update the STATUS directly to active. However, there are resources in Neutron that require provisioning by multiple asynchronous entities before they are ready to be used so managing the transition to the ACTIVE status becomes more -complex. To handle these cases, Neutron has the provisioning_blocks -module to track the entities that are still provisioning a resource. +complex. To handle these cases, Neutron has `the provisioning_blocks +module +`_ +to track the entities that are still provisioning a resource. The main example of this is with ML2, the L2 agents and the DHCP agents. When a port is created and bound to a host, it's placed in the DOWN @@ -151,9 +153,3 @@ the port is deleted or it is successful. If an ML2 driver immediately places a bound port in the ACTIVE state (e.g. after calling a backend in update_port_postcommit), this patch will not have any impact on that process. - - -References ----------- - -.. [#] Provisioning Blocks Module: http://git.openstack.org/cgit/openstack/neutron/tree/neutron/db/provisioning_blocks.py