mirror of https://github.com/apache/nifi.git
NIFI-6198 Infinite recursion in HBase*ClientService
This closes #3419. Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
This commit is contained in:
parent
cded30b3d2
commit
49e74b29db
|
@ -504,7 +504,7 @@ public class HBase_1_1_2_ClientService extends AbstractControllerService impleme
|
|||
|
||||
@Override
|
||||
public void delete(String tableName, List<byte[]> rowIds) throws IOException {
|
||||
delete(tableName, rowIds);
|
||||
delete(tableName, rowIds, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -503,7 +503,7 @@ public class HBase_2_ClientService extends AbstractControllerService implements
|
|||
|
||||
@Override
|
||||
public void delete(String tableName, List<byte[]> rowIds) throws IOException {
|
||||
delete(tableName, rowIds);
|
||||
delete(tableName, rowIds, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue