Repository: phoenix
Updated Branches:
  refs/heads/3.0 c4af62375 -> ae74afa48


PHOENIX-908 Remove "Release unknown lockId" warning

Apply remaining portion of patch to avoid the "Release unknown
lockId: 5" warning that is regularly logged.


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/ae74afa4
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/ae74afa4
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/ae74afa4

Branch: refs/heads/3.0
Commit: ae74afa48b51fcbdfdac01c114258c76ca702e4f
Parents: c4af623
Author: Gabriel Reid <gabri...@ngdata.com>
Authored: Fri Jul 25 11:39:29 2014 +0200
Committer: Gabriel Reid <gabri...@ngdata.com>
Committed: Fri Jul 25 11:39:29 2014 +0200

----------------------------------------------------------------------
 .../java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/ae74afa4/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
----------------------------------------------------------------------
diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
index 499b188..b28fd2d 100644
--- 
a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
+++ 
b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
@@ -513,7 +513,7 @@ public class MetaDataEndpointImpl extends 
BaseEndpointCoprocessor implements Met
             if (result != null) {
                 return result; 
             }
-            List<Integer> lids = Lists.newArrayList(5);
+            List<Integer> lids = Lists.newArrayList();
             long clientTimeStamp = 
MetaDataUtil.getClientTimeStamp(tableMetadata);
             try {
                 acquireLock(region, lockKey, lids);

Reply via email to