add PROVISIONAL_IPV6_PD_PREFIX to constants

The constant PROVISIONAL_IPV6_PD_PREFIX was missed when rehoming
neutron.common.constants into lib, and is used outside of neutron [1].
This patch adds the constant to lib.

[1] http://codesearch.openstack.org/?q=PROVISIONAL_IPV6_PD_PREFIX

Change-Id: I9642ed9b513a43c5558f9611f43227299707284a
This commit is contained in:
Boden R 2017-09-22 13:04:08 -06:00
parent 067cd3c295
commit 3baf48fb7c
2 changed files with 6 additions and 0 deletions

View File

@ -320,6 +320,8 @@ INGRESS_DIRECTION = 'ingress'
EGRESS_DIRECTION = 'egress'
VALID_DIRECTIONS = (INGRESS_DIRECTION, EGRESS_DIRECTION)
PROVISIONAL_IPV6_PD_PREFIX = '::/64'
class Sentinel(object):
"""A constant object that does not change even when copied."""

View File

@ -0,0 +1,4 @@
---
features:
- The ``PROVISIONAL_IPV6_PD_PREFIX`` constant is now available in
``neutron_lib.constants``.