Skip to content

Commit bfec964

Browse files
committed
HBASE-24648 Remove the legacy 'forceSplit' related code at region server side (#1990)
Addendum to fix TestHeapSize
1 parent 37b863b commit bfec964

File tree

1 file changed

+2
-2
lines changed
  • hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver

1 file changed

+2
-2
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8407,10 +8407,10 @@ private static List<Cell> sort(List<Cell> cells, final CellComparator comparator
84078407

84088408
public static final long FIXED_OVERHEAD = ClassSize.align(
84098409
ClassSize.OBJECT +
8410-
56 * ClassSize.REFERENCE +
8410+
55 * ClassSize.REFERENCE +
84118411
3 * Bytes.SIZEOF_INT +
84128412
14 * Bytes.SIZEOF_LONG +
8413-
3 * Bytes.SIZEOF_BOOLEAN);
8413+
2 * Bytes.SIZEOF_BOOLEAN);
84148414

84158415
// woefully out of date - currently missing:
84168416
// 1 x HashMap - coprocessorServiceHandlers

0 commit comments

Comments
 (0)