GitHub user Ethanlm opened a pull request:
https://github.com/apache/storm/pull/2405
[STORM-2806] Give users an option to disable the login cache
https://issues.apache.org/jira/browse/STORM-2806
With this patch, users can add `disableLoginCache=true` to the jaas.conf
file to disable the login cache. For example,
```
StormClient {
com.sun.security.auth.module.Krb5LoginModule required
doNotPrompt=true
useTicketCache=true
disableLoginCache=true
serviceName="gstorm";
};
```
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/Ethanlm/storm STORM-2806
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/storm/pull/2405.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2405
----
commit 864188f1cfb18aedccf9e235e18de3b059ebdc80
Author: Ethan Li <[email protected]>
Date: 2017-11-09T21:54:47Z
[STORM-2806] Give users an option to disable the login cache
----
---