From 7cb7100de5351fd2dc3afb1a0193632cfa025f8c Mon Sep 17 00:00:00 2001 From: Andrew Purtell Date: Tue, 12 Jul 2022 11:19:35 -0700 Subject: [PATCH] HBASE-27161 Improve TestMultiRespectsLimits (#4586) TestMultiRespectLimits submits a put with an empty value. This appears to not be what was intended. Instead, use a single byte. Signed-off-by: Duo Zhang --- .../apache/hadoop/hbase/client/TestMultiRespectsLimits.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiRespectsLimits.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiRespectsLimits.java index 495ddf2b44f..f5736577603 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiRespectsLimits.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestMultiRespectsLimits.java @@ -150,10 +150,10 @@ public class TestMultiRespectsLimits { Bytes.toBytes("5"), // Buffer }; - // Set the value size so that one result will be less than the MAX_SIE + // Set the value size so that one result will be less than the MAX_SIZE // however the block being reference will be larger than MAX_SIZE. // This should cause the regionserver to try and send a result immediately. - byte[] value = new byte[MAX_SIZE - 100]; + byte[] value = new byte[1]; Bytes.random(value); for (byte[] col : cols) {