commit | 105cf5345a66272a77c67d309bd8cd6d26fa4fee | [log] [tgz] |
---|---|---|
author | Brian O'Connor <bocon@onlab.us> | Tue Apr 19 13:07:38 2016 -0700 |
committer | Gerrit Code Review <gerrit@onlab.us> | Fri Apr 29 06:34:39 2016 +0000 |
tree | bec27bfdc186fd22c249c1b68435291bf762e69e | |
parent | ee66aadce8831b44c359b9c3e371a2395ff79f73 [diff] |
ONOS-3748 Resubmitting pending PURGE_REQ intents Change-Id: I71ea3f35e1bc3e80d5df393d27fad5f48a295818
diff --git a/core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java b/core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java index a85865e..d51fe3a 100644 --- a/core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java +++ b/core/net/src/main/java/org/onosproject/net/intent/impl/IntentCleanup.java
@@ -195,6 +195,9 @@ case WITHDRAW_REQ: service.withdraw(intentData.intent()); break; + case PURGE_REQ: + service.purge(intentData.intent()); + break; default: log.warn("Failed to resubmit pending intent {} in state {} with request {}", intentData.key(), intentData.state(), intentData.request());