From cf7bb150bf1f60da8d2a3377d062bbd5f9d71c57 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 2 Jul 2017 09:56:17 +0300 Subject: [PATCH] make odl_features default to empty feature set Tests that do not need any features turned on should not be forced to initialize odl_features by using OpendaylightFeaturesFixture. After this change all features will be implicitly off. Change-Id: Iff40030dc84e4662cf33d3a9a875e3e895fb6627 --- networking_odl/common/odl_features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking_odl/common/odl_features.py b/networking_odl/common/odl_features.py index 9bd43fd59..3c270ee13 100644 --- a/networking_odl/common/odl_features.py +++ b/networking_odl/common/odl_features.py @@ -29,7 +29,7 @@ LOG = log.getLogger(__name__) OPERATIONAL_PORT_STATUS = 'operational-port-status' -feature_set = None +feature_set = set() def init():