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-05 18:12:46 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4248bee8a11992654830e5f967c71981406b2501
4248bee8
1 parent
65d12944
add more info to copycat timeout log
Change-Id: I713caf37b3ca99c3b7319be35cb8eb03fb3c27d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocolClient.java
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocolClient.java
View file @
4248bee
...
...
@@ -132,8 +132,8 @@ public class ClusterMessagingProtocolClient implements ProtocolClient {
}
catch
(
IOException
|
InterruptedException
|
ExecutionException
|
TimeoutException
e
)
{
if
(
message
.
subject
().
equals
(
ClusterMessagingProtocol
.
COPYCAT_SYNC
)
||
message
.
subject
().
equals
(
ClusterMessagingProtocol
.
COPYCAT_PING
))
{
log
.
warn
(
"
Request to {} failed. Will retry "
+
"in {} ms"
,
remoteNode
,
RETRY_INTERVAL_MILLIS
);
log
.
warn
(
"
{} Request to {} failed. Will retry in {} ms"
,
message
.
subject
()
,
remoteNode
,
RETRY_INTERVAL_MILLIS
);
THREAD_POOL
.
schedule
(
this
,
RETRY_INTERVAL_MILLIS
,
...
...
Please
register
or
login
to post a comment