Skip to content

Commit 06d48cb

Browse files
committed
OvnDriver and DvrHaDriver to use "distributed_support" variable
``OvnDriver`` and ``DvrHaDriver`` classes were using an incorrect variable name to define the DVR support, that should be "distributed_support" instead of "dvr_support". Closes-Bug: #2056199 Change-Id: Id2ee080dde8cd094995e94564f2877a89e9cc5aa
1 parent c4c14f9 commit 06d48cb

File tree

2 files changed

+2
-2
lines changed
  • neutron/services

2 files changed

+2
-2
lines changed

neutron/services/l3_router/service_providers/dvrha.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
class DvrHaDriver(dvr.DvrDriver, ha.HaDriver):
2121
ha_support = base.MANDATORY
22-
dvr_support = base.MANDATORY
22+
distributed_support = base.MANDATORY

neutron/services/ovn_l3/service_providers/ovn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
@registry.has_registry_receivers
4040
class OvnDriver(base.L3ServiceProvider):
4141
ha_support = base.MANDATORY
42-
dvr_support = base.MANDATORY
42+
distributed_support = base.MANDATORY
4343

4444
@registry.receives(resources.ROUTER, [events.PRECOMMIT_CREATE])
4545
def _process_router_create_precommit(self, resource, event, trigger,

0 commit comments

Comments
 (0)