Simon Hunt
Committed by Gerrit Code Review

GUI- topo : added warning logs showing a race condition

- setting up the topology elements and trying to highlight them
   because we are trying to monitor an intent.

Change-Id: Ic7d7be62c085c186a22ba91942970eccb5711fe4
......@@ -339,6 +339,8 @@
api.unsupNode(hdata.id, less);
}
// TODO: further highlighting?
} else {
$log.warn('HILITE: no host element:', host.id);
}
});
......@@ -352,6 +354,8 @@
api.unsupNode(ddata.id, less);
}
// TODO: further highlighting?
} else {
$log.warn('HILITE: no device element:', device.id);
}
});
......@@ -382,6 +386,8 @@
}
ldata.el.classed(portcls, true);
}
} else {
$log.warn('HILITE: no link element:', link.id);
}
});
......