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
2015-02-10 15:16:57 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fd3cc05f65ed9f53d69d0c7d300a44578e3fc99f
fd3cc05f
1 parent
08f841d0
fix for mastership race condition.
Change-Id: Id219bdf00f3d6501027566d54342c5d7c1b27789
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java
core/net/src/main/java/org/onosproject/net/device/impl/DeviceManager.java
View file @
fd3cc05
...
...
@@ -614,7 +614,11 @@ public class DeviceManager
}
// device is connected to this node:
reassertRole
(
did
,
myNextRole
);
if
(
store
.
getDevice
(
did
)
!=
null
)
{
reassertRole
(
did
,
myNextRole
);
}
else
{
log
.
warn
(
"Device is not yet/no longer in the store: {}"
,
did
);
}
}
}
...
...
Please
register
or
login
to post a comment