commit | a44dda5333cec569b4be43aeb4709b81123ef01f | [log] [tgz] |
---|---|---|
author | Brian O'Connor <bocon@onlab.us> | Mon Dec 01 17:42:41 2014 -0800 |
committer | Brian O'Connor <bocon@onlab.us> | Mon Dec 01 17:42:41 2014 -0800 |
tree | 221d184268a8f73650ffc586be7832e237dde25a | |
parent | 86f6f7f01193e69c297d6cba14434dbc74d81c8d [diff] |
Suppressing PathNotFound exception Change-Id: If92b4de390917c56b637abb5bdd42c2f97be507b
diff --git a/core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java b/core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java index d8c2dcd..c4008aa 100644 --- a/core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java +++ b/core/net/src/main/java/org/onlab/onos/net/intent/impl/IntentManager.java
@@ -293,6 +293,8 @@ // 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);