use EGRESS_DIRECTION and INGRESS_DIRECTION from neutron-lib

The EGRESS_DIRECTION and INGRESS_DIRECTION constants live in neutron-lib
now and neutron is going to consume them in
I1b81f5c3de9e6f2c0967c2db23ddb716ee7ec6b9

This patch removes the EGRESS_DIRECTION, INGRESS_DIRECTION and
VALID_DIRECTIONS constants from common.constants as they are already
defined and use from neutron-lib.

Change-Id: I52841ecd716f6dbf87fc4c5543d68ba378edbeea
This commit is contained in:
Boden R 2018-01-05 11:50:44 -07:00
parent cbbb1c5740
commit e5afab788c

View File

@ -123,10 +123,6 @@ AGENT_ALIVE = 'alive'
# agent has just returned to alive after being dead
AGENT_REVIVED = 'revived'
INGRESS_DIRECTION = 'ingress'
EGRESS_DIRECTION = 'egress'
VALID_DIRECTIONS = (INGRESS_DIRECTION, EGRESS_DIRECTION)
VALID_ETHERTYPES = (lib_constants.IPv4, lib_constants.IPv6)
IP_ALLOWED_VERSIONS = [lib_constants.IP_VERSION_4, lib_constants.IP_VERSION_6]