[WIFI-7514] Fix enum handling for DHCP Lease IP table

This commit is contained in:
ralphlee
2022-03-31 12:13:13 -04:00
parent 284f9bcf37
commit 665cf5f3b8

View File

@@ -96,9 +96,10 @@ public class OvsdbMonitor extends OvsdbDaoBase {
for (RowUpdate rowUpdate : tableUpdate.getRowUpdates().values()) {
if (rowUpdate.getNew() != null) {
Map<String, String> rowMap = new HashMap<>();
rowUpdate.getNew().getColumns().forEach((key1, value) -> rowMap.put(key1, value.toString()));
rowUpdate.getNew().getColumns().entrySet().forEach(c -> OvsdbDao.translateDhcpFpValueToString(c, rowMap));
ret.add(rowMap);
}