commit | 8e3e6a70f2ec9d18004a3cab75c73969879c7762 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@onlab.us> | Tue May 24 13:33:48 2016 -0700 |
committer | Brian O'Connor <bocon@onlab.us> | Tue May 24 21:01:22 2016 +0000 |
tree | 2c847f958e1ebf55f5a7d6851cb5ae92535a85ea | |
parent | 51d9f1aae218bd8b011e3b8686f587739e9ab098 [diff] |
Fix for ONOS-4568 - Intents stuck in INSTALLING state The default pipeline driver was not calling the success callback for next objectives. This caused the intent installer to think there were still flows in need of installation, and the intent never completed. Change-Id: Ib411c317b28475cfc1e966e31f859cebbeea3792 (cherry picked from commit ce7db1b65f15c598becc773a5eb19a1a5319ccd5)
diff --git a/drivers/default/src/main/java/org/onosproject/driver/pipeline/DefaultSingleTablePipeline.java b/drivers/default/src/main/java/org/onosproject/driver/pipeline/DefaultSingleTablePipeline.java index 8ac24d4..eca9014 100644 --- a/drivers/default/src/main/java/org/onosproject/driver/pipeline/DefaultSingleTablePipeline.java +++ b/drivers/default/src/main/java/org/onosproject/driver/pipeline/DefaultSingleTablePipeline.java
@@ -217,6 +217,7 @@ pendingNext.put(nextObjective.id(), nextObjective); flowObjectiveStore.putNextGroup(nextObjective.id(), new SingleGroup(new DefaultGroupKey(appKryo.serialize(nextObjective.id())))); + nextObjective.context().ifPresent(context -> context.onSuccess(nextObjective)); } @Override