Skip to content

Commit dd189fa

Browse files
committed
Fix link discovery not working after app reload
1 parent e0aae05 commit dd189fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/main/java/org/onosproject/ngsdn/tutorial/pipeconf/PipelinerImpl.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ public void forward(ForwardingObjective obj) {
129129
break;
130130
case REMOVE:
131131
flowRuleService.removeFlowRules(ruleBuilder.build());
132-
groupService.removeGroup(deviceId, cloneGroup.appCookie(), obj.appId());
132+
// Do not remove the clone group as other flow rules might be
133+
// pointing to it.
133134
break;
134135
default:
135136
log.warn("Unknown operation {}", obj.op());

0 commit comments

Comments
 (0)