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
alshabib
2014-10-08 20:20:03 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c7e1cb63342efa53014b199266628254917e3ff9
c7e1cb63
1 parent
166f1a58
some extra comments
Change-Id: Icde01e92c15b716a32cacfb658cb93f42234ab34
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 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 @
c7e1cb6
...
...
@@ -521,9 +521,8 @@ public class IntentManager
Future
<
CompletedBatchOperation
>
future
=
i
.
next
();
try
{
// TODO: we may want to get the future here and go back to the future.
future
.
get
(
100
,
TimeUnit
.
NANOSECONDS
);
CompletedBatchOperation
completed
=
future
.
get
(
100
,
TimeUnit
.
NANOSECONDS
);
// TODO check if future succeeded and if not report fail items
i
.
remove
();
}
catch
(
TimeoutException
|
InterruptedException
|
ExecutionException
te
)
{
...
...
Please
register
or
login
to post a comment