HBASE-2763 Cross-port HADOOP-6833 IPC parameter leak bug
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@957058 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1e1aafef95
commit
97657cccd2
|
@ -409,6 +409,7 @@ Release 0.21.0 - Unreleased
|
|||
(Karthik Ranganathan via JD)
|
||||
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
||||
HBASE-2768 Fix teardown order in TestFilter
|
||||
HBASE-2763 Cross-port HADOOP-6833 IPC parameter leak bug
|
||||
|
||||
IMPROVEMENTS
|
||||
HBASE-1760 Cleanup TODOs in HTable
|
||||
|
|
|
@ -523,6 +523,7 @@ public class HBaseClient {
|
|||
//noinspection ThrowableInstanceNeverThrown
|
||||
call.setException(new RemoteException( WritableUtils.readString(in),
|
||||
WritableUtils.readString(in)));
|
||||
calls.remove(id);
|
||||
} else {
|
||||
Writable value = ReflectionUtils.newInstance(valueClass, conf);
|
||||
value.readFields(in); // read value
|
||||
|
|
Loading…
Reference in New Issue