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
Yuta HIGUCHI
2014-11-07 00:38:35 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1fea0b6fcaaf30ada1ce13be855a32548628c7de
1fea0b6f
1 parent
94ecb895
Foo bugfix
Change-Id: Id2db1cbf7bee61c0bd0178d62891d1f859ce31be
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
apps/foo/src/main/java/org/onlab/onos/foo/FooComponent.java
apps/foo/src/main/java/org/onlab/onos/foo/FooComponent.java
View file @
1fea0b6
...
...
@@ -199,7 +199,11 @@ public class FooComponent {
log
.
info
(
"Write success {} -> {}"
,
result
.
get
().
previousValue
(),
next
);
break
;
}
else
{
log
.
info
(
"Write failed trying to write{}"
,
next
);
log
.
info
(
"Write failed trying to write {}"
,
next
);
read
=
dbService
.
read
(
ReadRequest
.
get
(
someTable
,
someKey
));
if
(!
read
.
valueExists
())
{
log
.
error
(
"Shouldn't reach here"
);
}
}
}
while
(
retry
--
>
0
);
}
catch
(
Exception
e
)
{
...
...
Please
register
or
login
to post a comment