Skip to content

Commit de88e5e

Browse files
committed
Diff segment missing from backport of HBASE-26867
1 parent 414f24e commit de88e5e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

hbase-server/src/main/java/org/apache/hadoop/hbase/procedure/flush/MasterFlushTableProcedureManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)