HBASE-4620 I broke the build when I submitted HBASE-3581 (Send length of the rpc response)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1186347 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-10-19 17:13:21 +00:00
parent dcb718d0c5
commit 5b809d7f7c
2 changed files with 4 additions and 2 deletions

View File

@ -368,6 +368,8 @@ Release 0.92.0 - Unreleased
with evictOnClose (jgray)
HBASE-4579 CST.requestCompaction semantics changed, logs are now
spammed when too many store files
HBASE-4620 I broke the build when I submitted HBASE-3581 (Send length
of the rpc response)
TESTS
HBASE-4450 test for number of blocks read: to serve as baseline for expected

View File

@ -42,6 +42,6 @@ class ResponseFlag {
}
static byte getErrorAndLengthSet() {
return LENGTH_BIT & ERROR_BIT;
return LENGTH_BIT | ERROR_BIT;
}
}
}