keith-turner commented on code in PR #4063:
URL: https://github.com/apache/accumulo/pull/4063#discussion_r1425428853
##########
core/src/main/java/org/apache/accumulo/core/client/MutationsRejectedException.java:
##########
@@ -59,8 +60,11 @@ public MutationsRejectedException(Instance instance,
List<ConstraintViolationSum
Map<TabletId,Set<SecurityErrorCode>> hashMap, Collection<String>
serverSideErrors,
int unknownErrors, Throwable cause) {
super(
- "# constraint violations : " + cvsList.size() + " security codes: " +
hashMap.toString()
- + " # server errors " + serverSideErrors.size() + " # exceptions
" + unknownErrors,
+ "# constraint violations : "
Review Comment:
```suggestion
"constraint violation codes : "
```
##########
core/src/main/java/org/apache/accumulo/core/client/MutationsRejectedException.java:
##########
@@ -82,9 +86,13 @@ public MutationsRejectedException(Instance instance,
List<ConstraintViolationSum
public MutationsRejectedException(AccumuloClient client,
List<ConstraintViolationSummary> cvsList,
Map<TabletId,Set<SecurityErrorCode>> hashMap, Collection<String>
serverSideErrors,
int unknownErrors, Throwable cause) {
- super("# constraint violations : " + cvsList.size() + " security codes: "
- + format(hashMap, (ClientContext) client) + " # server errors " +
serverSideErrors.size()
- + " # exceptions " + unknownErrors, cause);
+ super(
+ "# constraint violations : "
Review Comment:
```suggestion
"constraint violation codes : "
```
--
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]