NIFI-6198 Infinite recursion in HBase*ClientService

This closes #3419.

Signed-off-by: Koji Kawamura <ijokarumawak@apache.org>
This commit is contained in:
Lars Francke 2019-04-09 00:05:52 +02:00 committed by Koji Kawamura
parent cded30b3d2
commit 49e74b29db
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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