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 2021/12/27 18:53:47 UTC

[GitHub] [accumulo] foster33 opened a new pull request #2400: Correct user-facing misspellings

foster33 opened a new pull request #2400:
URL: https://github.com/apache/accumulo/pull/2400


   The following PR serves to correct misspellings throughout Accumulo that users may see.
   
   Corrections were found in log messages, exceptions, print statements, etc.


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



[GitHub] [accumulo] DomGarguilo merged pull request #2400: Correct user-facing misspellings

Posted by GitBox <gi...@apache.org>.
DomGarguilo merged pull request #2400:
URL: https://github.com/apache/accumulo/pull/2400


   


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



[GitHub] [accumulo] DomGarguilo commented on a change in pull request #2400: Correct user-facing misspellings

Posted by GitBox <gi...@apache.org>.
DomGarguilo commented on a change in pull request #2400:
URL: https://github.com/apache/accumulo/pull/2400#discussion_r775619103



##########
File path: core/src/main/java/org/apache/accumulo/core/util/AddressUtil.java
##########
@@ -61,7 +61,7 @@ public static int getAddressCacheNegativeTtl(UnknownHostException originalExcept
     try {
       negativeTtl = Integer.parseInt(Security.getProperty("networkaddress.cache.negative.ttl"));
     } catch (NumberFormatException exception) {
-      log.warn("Failed to get JVM negative DNS respones cache TTL due to format problem "
+      log.warn("Failed to get JVM negative DNS responses cache TTL due to format problem "

Review comment:
       ```suggestion
         log.warn("Failed to get JVM negative DNS response cache TTL due to format problem "
   ```




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



[GitHub] [accumulo] EdColeman commented on a change in pull request #2400: Correct user-facing misspellings

Posted by GitBox <gi...@apache.org>.
EdColeman commented on a change in pull request #2400:
URL: https://github.com/apache/accumulo/pull/2400#discussion_r775617385



##########
File path: core/src/main/java/org/apache/accumulo/core/file/BloomFilterLayer.java
##########
@@ -544,7 +544,7 @@ public static void main(String[] args) throws IOException {
 
     t2 = System.currentTimeMillis();
 
-    out.printf("existant lookup rate %6.2f%n", 500 / ((t2 - t1) / 1000.0));
+    out.printf("existent lookup rate %6.2f%n", 500 / ((t2 - t1) / 1000.0));

Review comment:
       Maybe this should be existing?
   ``` suggest
       out.printf("existing lookup rate %6.2f%n", 500 / ((t2 - t1) / 1000.0));
   ```

##########
File path: core/src/main/java/org/apache/accumulo/core/util/AddressUtil.java
##########
@@ -61,7 +61,7 @@ public static int getAddressCacheNegativeTtl(UnknownHostException originalExcept
     try {
       negativeTtl = Integer.parseInt(Security.getProperty("networkaddress.cache.negative.ttl"));
     } catch (NumberFormatException exception) {
-      log.warn("Failed to get JVM negative DNS respones cache TTL due to format problem "
+      log.warn("Failed to get JVM negative DNS responses cache TTL due to format problem "

Review comment:
       Maybe response?
   ``` suggest
         log.warn("Failed to get JVM negative DNS response cache TTL due to format problem "
   ```




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