Simon Hunt

GUI - Topo Overlay - restore BPS threshold to 4K.

Change-Id: I07f54cdabe85a15e6ada6911ff12825c5358fbf1
......@@ -432,8 +432,8 @@ public class TrafficMonitorObject {
Link one = link.one();
Load egressSrc = servicesBundle.portStatsService().load(one.src());
Load egressDst = servicesBundle.portStatsService().load(one.dst());
// link.addLoad(maxLoad(egressSrc, egressDst), BPS_THRESHOLD);
link.addLoad(maxLoad(egressSrc, egressDst), 10); // FIXME - debug only
link.addLoad(maxLoad(egressSrc, egressDst), BPS_THRESHOLD);
// link.addLoad(maxLoad(egressSrc, egressDst), 10); // FIXME - debug only
}
private Load maxLoad(Load a, Load b) {
......