ddanielr commented on code in PR #6057:
URL: https://github.com/apache/accumulo/pull/6057#discussion_r2691865477
##########
server/manager/src/main/java/org/apache/accumulo/manager/ManagerClientServiceHandler.java:
##########
@@ -581,8 +581,8 @@ private void alterTableProperty(TCredentials c, String
tableName, String propert
Map.of(property, value));
}
} catch (IllegalStateException ex) {
- log.warn("Invalid table property, tried to set: tableId: " +
tableId.canonical() + " to: "
Review Comment:
Line 574 can also return an IllegalStateException
```
PropUtil.removeProperties(manager.getContext(),
TablePropKey.of(manager.getContext(), tableId),
List.of(property));
```
This log message should include the table OP instead of assuming it's always
a `set` opt.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]