Skip to content
Snippets Groups Projects
Commit 8c899370 authored by kwanggithub's avatar kwanggithub
Browse files
parent 5e7ef76e
No related branches found
No related tags found
No related merge requests found
......@@ -397,7 +397,10 @@ public class LoadBalancer implements IFloodlightModule,
if (srcDevice != null && dstDevice != null)
break;
}
}
}
// srcDevice and/or dstDevice is null, no route can be pushed
if (srcDevice == null || dstDevice == null) return;
Long srcIsland = topology.getL2DomainId(sw.getId());
......
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