HBASE-5279 NPE in Master after upgrading to 0.92.0 -- REVERT OVERCOMMIT TO HREGION
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1245768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5994c50143
commit
0caad4616e
|
@ -4112,7 +4112,6 @@ public class HRegion implements HeapSize { // , Writable{
|
|||
private List<KeyValue> get(Get get, boolean withCoprocessor)
|
||||
throws IOException {
|
||||
long now = EnvironmentEdgeManager.currentTimeMillis();
|
||||
Scan scan = new Scan(get);
|
||||
|
||||
List<KeyValue> results = new ArrayList<KeyValue>();
|
||||
|
||||
|
@ -4123,8 +4122,6 @@ public class HRegion implements HeapSize { // , Writable{
|
|||
}
|
||||
}
|
||||
|
||||
Scan scan = new Scan(get);
|
||||
|
||||
RegionScanner scanner = null;
|
||||
try {
|
||||
scanner = getScanner(scan);
|
||||
|
|
Loading…
Reference in New Issue