File tree Expand file tree Collapse file tree
hbase-server/src/main/java/org/apache/hadoop/hbase/procedure/flush Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,13 +146,13 @@ public void execProcedure(ProcedureDescription desc) throws IOException {
146146
147147 ForeignExceptionDispatcher monitor = new ForeignExceptionDispatcher (desc .getInstance ());
148148
149- HBaseProtos .NameStringPair family = null ;
149+ HBaseProtos .NameStringPair families = null ;
150150 for (HBaseProtos .NameStringPair nsp : desc .getConfigurationList ()) {
151151 if (HConstants .FAMILY_KEY_STR .equals (nsp .getName ())) {
152- family = nsp ;
152+ families = nsp ;
153153 }
154154 }
155- byte [] procArgs = family != null ? family .toByteArray () : new byte [0 ];
155+ byte [] procArgs = families != null ? families .toByteArray () : new byte [0 ];
156156
157157 // Kick of the global procedure from the master coordinator to the region servers.
158158 // We rely on the existing Distributed Procedure framework to prevent any concurrent
You can’t perform that action at this time.
0 commit comments