File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
src/java/org/apache/hadoop/security/token/delegation Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Hadoop Change Log
33Trunk (unreleased changes)
44
55 IMPROVEMENTS
6+ HADOOP-6778. add isRunning() method to
7+ AbstractDelegationTokenSecretManager (for HDFS-1044) (boryas)
8+
69 HADOOP-6633. normalize property names for JT/NN kerberos principal
710 names in configuration (boryas)
811
Original file line number Diff line number Diff line change @@ -335,6 +335,14 @@ public synchronized void stopThreads() {
335335 }
336336 }
337337
338+ /**
339+ * is secretMgr running
340+ * @return true if secret mgr is running
341+ */
342+ public synchronized boolean isRunning () {
343+ return running ;
344+ }
345+
338346 private class ExpiredTokenRemover extends Thread {
339347 private long lastMasterKeyUpdate ;
340348 private long lastTokenCacheCleanup ;
You can’t perform that action at this time.
0 commit comments