You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2017/10/31 16:03:50 UTC

kudu git commit: Update auth_token_validity_seconds description

Repository: kudu
Updated Branches:
  refs/heads/master 563f41b5c -> 354f4c445


Update auth_token_validity_seconds description

The caveats are no longer relevant since KUDU-2013 landed.

Change-Id: I050e39d0377049cdaac0afb5085a8a9a19d620a5
Reviewed-on: http://gerrit.cloudera.org:8080/8413
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <as...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/354f4c44
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/354f4c44
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/354f4c44

Branch: refs/heads/master
Commit: 354f4c44562de03e20064a5349c306f3dd05fa19
Parents: 563f41b
Author: Dan Burkert <da...@apache.org>
Authored: Mon Oct 30 13:48:08 2017 -0400
Committer: Alexey Serbin <as...@cloudera.com>
Committed: Tue Oct 31 16:02:53 2017 +0000

----------------------------------------------------------------------
 src/kudu/master/master.cc | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/354f4c44/src/kudu/master/master.cc
----------------------------------------------------------------------
diff --git a/src/kudu/master/master.cc b/src/kudu/master/master.cc
index 0b2d7d9..0bb45cf 100644
--- a/src/kudu/master/master.cc
+++ b/src/kudu/master/master.cc
@@ -75,9 +75,8 @@ TAG_FLAG(tsk_rotation_seconds, experimental);
 
 DEFINE_int64(authn_token_validity_seconds, 60 * 60 * 24 * 7,
              "Period of time for which an issued authentication token is valid. "
-             "It's not possible to renew a token, hence the token validity "
-             "interval defines the longest possible lifetime of an external "
-             "job which uses a token for authentication.");
+             "Clients will automatically attempt to reacquire a token after the "
+             "validity period expires.");
 TAG_FLAG(authn_token_validity_seconds, experimental);
 
 using std::min;