commit | 6fcd8b97f7158325fb102d8d3bd3eb064d98443d | [log] [tgz] |
---|---|---|
author | pier <pier@opennetworking.org> | Tue Dec 10 18:09:00 2019 +0100 |
committer | pier <pier@opennetworking.org> | Fri Jan 17 12:07:04 2020 +0100 |
tree | fc5e2cd9582429d361d0f7eb66de31ab29a71418 | |
parent | 62851133c08773669ee002693160d008c48c9c52 [diff] |
Fix VERIFY timeout Verify fails without firing the callback: - objective is not removed from the queue till is expiration - InOrderFlowObjectiveManger can remain in stalled state Change-Id: I9922c8498100a5af3e0d7ce2f39e080ba4c90b14
diff --git a/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/Ofdpa2GroupHandler.java b/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/Ofdpa2GroupHandler.java index 6468363..6fa31d6 100644 --- a/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/Ofdpa2GroupHandler.java +++ b/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/Ofdpa2GroupHandler.java
@@ -1885,6 +1885,7 @@ if (topGroup == null) { log.warn("topGroup {} not found in GroupStore device:{}, nextId:{}", topGroupKey, deviceId, nextObjective.id()); + fail(nextObjective, ObjectiveError.GROUPMISSING); return; } int actualGroupSize = topGroup.buckets().buckets().size();