This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new b216d17  Fix typos in Admin
b216d17 is described below

commit b216d17731c924fac825c113eb80e6af4c249db9
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Wed Dec 22 06:49:39 2021 -0500

    Fix typos in Admin
---
 .../base/src/main/java/org/apache/accumulo/server/util/Admin.java  | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 
a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java 
b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
index 299b1d6..049165c 100644
--- a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
+++ b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java
@@ -315,9 +315,8 @@ public class Admin implements KeywordExecutable {
   }
 
   /**
-   * flushing during shutdown is a performance optimization, its not required. 
The method will make
-   * an attempt to initiate flushes of all tables and give up if it takes too 
long.
-   *
+   * Flushing during shutdown is a performance optimization, it's not 
required. This method will
+   * attempt to initiate flushes of all tables and give up if it takes too 
long.
    */
   private static void flushAll(final ClientContext context) {
 
@@ -337,7 +336,7 @@ public class Admin implements KeywordExecutable {
           }
         }
       } catch (Exception e) {
-        log.warn("Failed to intiate flush {}", e.getMessage());
+        log.warn("Failed to initiate flush {}", e.getMessage());
       }
     };
 

Reply via email to