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)
|
(Karthik Ranganathan via JD)
|
||||||
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
HBASE-2769 Fix typo in warning message for HBaseConfiguration
|
||||||
HBASE-2768 Fix teardown order in TestFilter
|
HBASE-2768 Fix teardown order in TestFilter
|
||||||
|
HBASE-2763 Cross-port HADOOP-6833 IPC parameter leak bug
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
|
|
@ -523,6 +523,7 @@ public class HBaseClient {
|
||||||
//noinspection ThrowableInstanceNeverThrown
|
//noinspection ThrowableInstanceNeverThrown
|
||||||
call.setException(new RemoteException( WritableUtils.readString(in),
|
call.setException(new RemoteException( WritableUtils.readString(in),
|
||||||
WritableUtils.readString(in)));
|
WritableUtils.readString(in)));
|
||||||
|
calls.remove(id);
|
||||||
} else {
|
} else {
|
||||||
Writable value = ReflectionUtils.newInstance(valueClass, conf);
|
Writable value = ReflectionUtils.newInstance(valueClass, conf);
|
||||||
value.readFields(in); // read value
|
value.readFields(in); // read value
|
||||||
|
|
Loading…
Reference in New Issue