mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2025-11-03 20:17:53 +00:00
Opensync AP Stats refactoring, fix error in Row parsing for VIF delete
This commit is contained in:
@@ -300,8 +300,8 @@ public class ConnectusOvsdbClient implements ConnectusOvsdbClientInterface {
|
|||||||
for (Entry<UUID, RowUpdate> rowUpdate : tableUpdate.getValue().getRowUpdates().entrySet()) {
|
for (Entry<UUID, RowUpdate> rowUpdate : tableUpdate.getValue().getRowUpdates().entrySet()) {
|
||||||
if (rowUpdate.getValue().getOld() != null && rowUpdate.getValue().getNew() == null) {
|
if (rowUpdate.getValue().getOld() != null && rowUpdate.getValue().getNew() == null) {
|
||||||
Row row = rowUpdate.getValue().getOld();
|
Row row = rowUpdate.getValue().getOld();
|
||||||
String ifName = row.getStringColumn("if_name");
|
String ifName = null;
|
||||||
String ssid = row.getStringColumn("ssid");
|
String ssid = null;
|
||||||
if (row.getColumns().get("ssid") != null && row.getColumns().get("ssid").getClass()
|
if (row.getColumns().get("ssid") != null && row.getColumns().get("ssid").getClass()
|
||||||
.equals(com.vmware.ovsdb.protocol.operation.notation.Atom.class)) {
|
.equals(com.vmware.ovsdb.protocol.operation.notation.Atom.class)) {
|
||||||
ssid = row.getStringColumn("ssid");
|
ssid = row.getStringColumn("ssid");
|
||||||
|
|||||||
Reference in New Issue
Block a user