Skip to content

Commit 8c7aa60

Browse files
authored
improves conditional update error message to include extent (apache#4214)
1 parent 0e82f76 commit 8c7aa60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/base/src/main/java/org/apache/accumulo/server/metadata/ConditionalTabletsMutatorImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public Ample.OperationRequirements mutateTablet(KeyExtent extent) {
8383
}
8484

8585
Preconditions.checkState(extents.putIfAbsent(extent.toMetaRow(), extent) == null,
86-
"Duplicate extents not handled");
86+
"Duplicate extents not handled %s", extent);
8787
return new ConditionalTabletMutatorImpl(this, context, extent, mutations::add,
8888
rejectedHandlers::put);
8989
}

0 commit comments

Comments
 (0)