This is an automated email from the ASF dual-hosted git repository. mmiller pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/master by this push: new f0548ae Remove deprecated from flush API (#437) f0548ae is described below commit f0548ae79ce56d97046dc24f3c38c6385fb92519 Author: Mike Miller <mmil...@apache.org> AuthorDate: Mon Apr 30 12:42:12 2018 -0400 Remove deprecated from flush API (#437) --- .../java/org/apache/accumulo/core/client/admin/TableOperations.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java index 6648acb..1d5078c 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java +++ b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java @@ -456,7 +456,8 @@ public interface TableOperations { TableNotFoundException, AccumuloException, TableExistsException; /** - * Initiate a flush of a table's data that is in memory + * Initiate a flush of a table's data that is in memory. To specify a range or to wait for flush + * to complete use {@link #flush(String, Text, Text, boolean)}. * * @param tableName * the name of the table @@ -464,10 +465,7 @@ public interface TableOperations { * if a general error occurs * @throws AccumuloSecurityException * if the user does not have permission - * - * @deprecated since 1.4; use {@link #flush(String, Text, Text, boolean)} instead */ - @Deprecated void flush(String tableName) throws AccumuloException, AccumuloSecurityException; /** -- To stop receiving notification emails like this one, please contact mmil...@apache.org.