You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2022/10/13 17:30:36 UTC

[GitHub] [accumulo] dlmarion commented on a diff in pull request #3015: Print warning in log when user does not have permission to get config

dlmarion commented on code in PR #3015:
URL: https://github.com/apache/accumulo/pull/3015#discussion_r994932609


##########
core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java:
##########
@@ -667,12 +667,14 @@ void removeProperty(String tableName, String property)
    *          the name of the table
    * @return all properties visible by this table (system and per-table properties). Note that
    *         recently changed properties may not be visible immediately.
+   * @throws AccumuloSecurityException
+   *           if the user does not have permission
    * @throws TableNotFoundException
    *           if the table does not exist
    * @since 1.6.0
    */
   default Iterable<Entry<String,String>> getProperties(String tableName)
-      throws AccumuloException, TableNotFoundException {
+      throws AccumuloException, AccumuloSecurityException, TableNotFoundException {

Review Comment:
   Backed out API changes in a38afd6



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org