You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by da...@apache.org on 2015/12/17 18:12:11 UTC

[3/6] storm git commit: adds clarifying comment about timeout value

adds clarifying comment about timeout value


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

Branch: refs/heads/master
Commit: 3f0281bdd394b9fbeec2c54e9add86089cbcdf29
Parents: e723112
Author: Derek Dagit <de...@yahoo-inc.com>
Authored: Tue Dec 15 09:20:49 2015 -0600
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Tue Dec 15 09:20:49 2015 -0600

----------------------------------------------------------------------
 storm-core/test/clj/backtype/storm/security/auth/auth_test.clj | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/3f0281bd/storm-core/test/clj/backtype/storm/security/auth/auth_test.clj
----------------------------------------------------------------------
diff --git a/storm-core/test/clj/backtype/storm/security/auth/auth_test.clj b/storm-core/test/clj/backtype/storm/security/auth/auth_test.clj
index 4f253ba..c422f83 100644
--- a/storm-core/test/clj/backtype/storm/security/auth/auth_test.clj
+++ b/storm-core/test/clj/backtype/storm/security/auth/auth_test.clj
@@ -47,6 +47,8 @@
 (defn mk-subject [name]
   (Subject. true #{(mk-principal name)} #{} #{}))
 
+;; 3 seconds in milliseconds
+;; This is plenty of time for a thrift client to respond.
 (def nimbus-timeout (Integer. (* 3 1000)))
 
 (defn nimbus-data [storm-conf inimbus]