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-10-09 21:53:14 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1767947f53aa44d5bb2fdb2c402ac702e0bc8f89
1767947f
1 parent
ec76bfe9
added missing log parameter
Change-Id: I6959a1b6eb3e051161d6e86ce94116a55b38c065
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
openflow/ctl/src/main/java/org/onlab/onos/openflow/controller/impl/OFChannelHandler.java
openflow/ctl/src/main/java/org/onlab/onos/openflow/controller/impl/OFChannelHandler.java
View file @
1767947
...
...
@@ -981,13 +981,13 @@ class OFChannelHandler extends IdleStateAwareChannelHandler {
// switch was a duplicate-dpid, calling the method below would clear
// all state for the original switch (with the same dpid),
// which we obviously don't want.
log
.
info
(
"{}:removal called"
);
log
.
info
(
"{}:removal called"
,
getSwitchInfoString
()
);
sw
.
removeConnectedSwitch
();
}
else
{
// A duplicate was disconnected on this ChannelHandler,
// this is the same switch reconnecting, but the original state was
// not cleaned up - XXX check liveness of original ChannelHandler
log
.
info
(
"{}:duplicate found"
);
log
.
info
(
"{}:duplicate found"
,
getSwitchInfoString
()
);
duplicateDpidFound
=
Boolean
.
FALSE
;
}
}
else
{
...
...
Please
register
or
login
to post a comment