Skip to content

Commit fab083f

Browse files
shastrinatortomflynn
authored andcommitted
Fix missing registration for acc-br
DropLog config requires registration for ExtraConfig for both bridges Signed-off-by: Kiran Shastri <shastrinator@gmail.com> Change-Id: I7b1b61013c9a5aa91f90aacceb731dffc4a31940
1 parent 9ad6984 commit fab083f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

agent-ovs/ovs/AccessFlowManager.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ void AccessFlowManager::start() {
9797
agent.getEndpointManager().registerListener(this);
9898
agent.getLearningBridgeManager().registerListener(this);
9999
agent.getPolicyManager().registerListener(this);
100+
agent.getExtraConfigManager().registerListener(this);
100101

101102
for (size_t i = 0; i < sizeof(ID_NAMESPACES)/sizeof(char*); i++) {
102103
idGen.initNamespace(ID_NAMESPACES[i]);

agent-ovs/ovs/include/AccessFlowManager.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <opflexagent/Agent.h>
1717
#include <opflexagent/EndpointManager.h>
1818
#include <opflexagent/PolicyListener.h>
19+
#include <opflexagent/ExtraConfigListener.h>
1920
#include "PortMapper.h"
2021
#include "SwitchManager.h"
2122
#include <opflexagent/TaskQueue.h>
@@ -34,6 +35,7 @@ class AccessFlowManager : public EndpointListener,
3435
public PortStatusListener,
3536
public PolicyListener,
3637
public SwitchStateHandler,
38+
public ExtraConfigListener,
3739
private boost::noncopyable {
3840
public:
3941
/**

0 commit comments

Comments
 (0)