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
2014-12-01 17:42:41 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a44dda5333cec569b4be43aeb4709b81123ef01f
a44dda53
1 parent
86f6f7f0
Suppressing PathNotFound exception
Change-Id: If92b4de390917c56b637abb5bdd42c2f97be507b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java
core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java
View file @
a44dda5
...
...
@@ -293,6 +293,8 @@ public class IntentManager
// If all went well, associate the resulting list of installable
// intents with the top-level intent and proceed to install.
update
.
setInstallables
(
installables
);
}
catch
(
PathNotFoundException
e
)
{
log
.
debug
(
"Path not found for intent {}"
,
intent
.
id
());
}
catch
(
IntentException
e
)
{
log
.
warn
(
"Unable to compile intent {} due to:"
,
intent
.
id
(),
e
);
...
...
Please
register
or
login
to post a comment