Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Brian O'Connor
2015-02-06 15:21:48 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ba1abbe032f384f848c16e66e3cd4fa32deea582
ba1abbe0
1 parent
7775bdaa
adding log for error case
Change-Id: Id0f779ad951ef9d11f6b0afeda2d3cba9239f46a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
View file @
ba1abbe
...
...
@@ -31,8 +31,6 @@ import org.onosproject.event.EventDeliveryService;
import
org.onosproject.net.flow.FlowRule
;
import
org.onosproject.net.flow.FlowRuleBatchEntry
;
import
org.onosproject.net.flow.FlowRuleBatchOperation
;
import
org.onosproject.net.flow.FlowRuleEvent
;
import
org.onosproject.net.flow.FlowRuleListener
;
import
org.onosproject.net.flow.FlowRuleOperations
;
import
org.onosproject.net.flow.FlowRuleOperationsContext
;
import
org.onosproject.net.flow.FlowRuleService
;
...
...
@@ -312,6 +310,8 @@ public class IntentManager
@Override
public
void
onError
(
FlowRuleOperations
ops
)
{
//FIXME store.write(pending.setState(BROKEN));
log
.
warn
(
"Failed installation: {} {} on {}"
,
pending
.
key
(),
pending
.
intent
(),
ops
);
}
});
}
...
...
Please
register
or
login
to post a comment