This is an automated email from the ASF dual-hosted git repository. zjffdu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push: new ee339f6 [MINOR] Use KERBEROS_REFRESH_INTERVAL in docs ee339f6 is described below commit ee339f6bbfe8a114fb11b71a798d98160d4aa5b0 Author: bobcanthelpyou <b...@canthelpyou.com> AuthorDate: Tue Jan 14 08:35:55 2020 +0100 [MINOR] Use KERBEROS_REFRESH_INTERVAL in docs ### What is this PR for? In the PR https://github.com/apache/zeppelin/pull/2443/files the ENV `LAUNCH_KERBEROS_REFRESH_INTERVAL` was renamed to `KERBEROS_REFRESH_INTERVAL` The old ENV name is still used in the shell documentation ### What type of PR is it? [Documentation] ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-4553 Author: bobcanthelpyou <b...@canthelpyou.com> Closes #3595 from bobcanthelpyou/kerberos and squashes the following commits: eef137d0d [bobcanthelpyou] [MINOR] Use KERBEROS_REFRESH_INTERVAL in docs --- docs/interpreter/shell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interpreter/shell.md b/docs/interpreter/shell.md index 9da2f09..c38391b 100644 --- a/docs/interpreter/shell.md +++ b/docs/interpreter/shell.md @@ -91,7 +91,7 @@ For changing the default behavior of when to renew Kerberos ticket following cha ```bash # Change Kerberos refresh interval (default value is 1d). Allowed postfix are ms, s, m, min, h, and d. -export LAUNCH_KERBEROS_REFRESH_INTERVAL=4h +export KERBEROS_REFRESH_INTERVAL=4h # Change kinit number retries (default value is 5), which means if the kinit command fails for 5 retries consecutively it will close the interpreter. export KINIT_FAIL_THRESHOLD=10 ```