WIFI-2080 update based on review comments

This commit is contained in:
Lynn Shi
2021-04-30 14:00:32 -04:00
parent a98cca3d8c
commit 1fbc4e1dff
2 changed files with 9 additions and 8 deletions

View File

@@ -327,8 +327,9 @@ public class OvsdbRrmConfig extends OvsdbDaoBase {
// for insert, make sure it is actually in the table
confirmRowExistsInTable(ovsdbClient, ((InsertResult) res).getUuid(), wifiRrmConfigDbTable);
} else if (res instanceof ErrorResult) {
LOG.error("configureWifiRrm error {}", (res));
throw new RuntimeException("configureWifiRrm " + ((ErrorResult) res).getError() + " " + ((ErrorResult) res).getDetails());
LOG.error("processCellSizeAttributesRequest error {}", (res));
throw new RuntimeException("processCellSizeAttributesRequest " + ((ErrorResult) res).getError() +
" " + ((ErrorResult) res).getDetails());
}
}