You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2016/01/25 00:29:37 UTC

[29/50] storm git commit: Fixing minor code comments

Fixing minor code comments


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/9eea60ff
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/9eea60ff
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/9eea60ff

Branch: refs/heads/1.x-branch
Commit: 9eea60ff567074da4caa29fafb5254d21992d9ea
Parents: e29856f
Author: Kishor Patil <kp...@yahoo-inc.com>
Authored: Wed Jan 20 20:49:34 2016 +0000
Committer: Kishor Patil <kp...@yahoo-inc.com>
Committed: Wed Jan 20 20:49:34 2016 +0000

----------------------------------------------------------------------
 storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/9eea60ff/storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java b/storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java
index 8ffa6b5..718c8f3 100644
--- a/storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java
+++ b/storm-core/src/jvm/org/apache/storm/messaging/netty/Login.java
@@ -47,7 +47,7 @@ public class Login {
     Logger LOG = Logger.getLogger(Login.class);
     public CallbackHandler callbackHandler;
 
-    // LoginThread will sleep until 80% of time from last refresh to
+    // Login will sleep until 80% of time from last refresh to
     // ticket's expiry has been reached, at which time it will wake
     // and try to renew the ticket.
     private static final float TICKET_RENEW_WINDOW = 0.80f;
@@ -79,7 +79,7 @@ public class Login {
     private long lastLogin = 0;
 
     /**
-     * LoginThread constructor. The constructor starts the thread used
+     * Login constructor. The constructor starts the thread used
      * to periodically re-login to the Kerberos Ticket Granting Server.
      * @param loginContextName
      *               name of section in JAAS file that will be use to login.