Skip to content
Snippets Groups Projects
Commit 9bc912d0 authored by abat's avatar abat
Browse files

Merge into master from pull request #283:

merge for filtering the devices that get reclassified. (https://github.com/floodlight/floodlight/pull/283)
parents e359f077 8c24e71d
No related branches found
No related tags found
No related merge requests found
......@@ -1403,7 +1403,9 @@ IFlowReconcileListener, IInfoProvider, IHAListener {
Iterator<Device> diter = deviceMap.values().iterator();
while (diter.hasNext()) {
Device d = diter.next();
reclassifyDevice(d);
if (d.getEntityClass() != null &&
entityClassNames.contains(d.getEntityClass().getName()))
reclassifyDevice(d);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment