This is an automated email from the ASF dual-hosted git repository.
guoweijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new fe8ff46123e [FLINK-31818][docs] Fix incorrect description of
security.kerberos.access.hadoopFileSystems in SecurityOptions
fe8ff46123e is described below
commit fe8ff46123ee2f9278066c801228416e38e2cbd4
Author: L <[email protected]>
AuthorDate: Tue Apr 18 00:02:53 2023 +0900
[FLINK-31818][docs] Fix incorrect description of
security.kerberos.access.hadoopFileSystems in SecurityOptions
---
docs/layouts/shortcodes/generated/security_auth_kerberos_section.html | 2 +-
docs/layouts/shortcodes/generated/security_configuration.html | 2 +-
.../src/main/java/org/apache/flink/configuration/SecurityOptions.java | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/docs/layouts/shortcodes/generated/security_auth_kerberos_section.html
b/docs/layouts/shortcodes/generated/security_auth_kerberos_section.html
index ad063064b49..1e4e249148f 100644
--- a/docs/layouts/shortcodes/generated/security_auth_kerberos_section.html
+++ b/docs/layouts/shortcodes/generated/security_auth_kerberos_section.html
@@ -12,7 +12,7 @@
<td><h5>security.kerberos.access.hadoopFileSystems</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>List<String></td>
- <td>A comma-separated list of Kerberos-secured Hadoop filesystems
Flink is going to access. For example,
security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002,hdfs://namenode3:9003.
The JobManager needs to have access to these filesystems to retrieve the
security tokens.</td>
+ <td>A semicolon-separated list of Kerberos-secured Hadoop
filesystems Flink is going to access. For example,
security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002;hdfs://namenode3:9003.
The JobManager needs to have access to these filesystems to retrieve the
security tokens.</td>
</tr>
<tr>
<td><h5>security.kerberos.login.contexts</h5></td>
diff --git a/docs/layouts/shortcodes/generated/security_configuration.html
b/docs/layouts/shortcodes/generated/security_configuration.html
index 5bfcc1710b3..069825bdd65 100644
--- a/docs/layouts/shortcodes/generated/security_configuration.html
+++ b/docs/layouts/shortcodes/generated/security_configuration.html
@@ -42,7 +42,7 @@
<td><h5>security.kerberos.access.hadoopFileSystems</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>List<String></td>
- <td>A comma-separated list of Kerberos-secured Hadoop filesystems
Flink is going to access. For example,
security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002,hdfs://namenode3:9003.
The JobManager needs to have access to these filesystems to retrieve the
security tokens.</td>
+ <td>A semicolon-separated list of Kerberos-secured Hadoop
filesystems Flink is going to access. For example,
security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002;hdfs://namenode3:9003.
The JobManager needs to have access to these filesystems to retrieve the
security tokens.</td>
</tr>
<tr>
<td><h5>security.kerberos.krb5-conf.path</h5></td>
diff --git
a/flink-core/src/main/java/org/apache/flink/configuration/SecurityOptions.java
b/flink-core/src/main/java/org/apache/flink/configuration/SecurityOptions.java
index 946894ad3f4..c9f0982e48f 100644
---
a/flink-core/src/main/java/org/apache/flink/configuration/SecurityOptions.java
+++
b/flink-core/src/main/java/org/apache/flink/configuration/SecurityOptions.java
@@ -167,8 +167,8 @@ public class SecurityOptions {
.noDefaultValue()
.withDeprecatedKeys("yarn.security.kerberos.additionalFileSystems")
.withDescription(
- "A comma-separated list of Kerberos-secured Hadoop
filesystems Flink is going to access. For example, "
- +
"security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002,hdfs://namenode3:9003.
"
+ "A semicolon-separated list of Kerberos-secured
Hadoop filesystems Flink is going to access. For example, "
+ +
"security.kerberos.access.hadoopFileSystems=hdfs://namenode2:9002;hdfs://namenode3:9003.
"
+ "The JobManager needs to have access to
these filesystems to retrieve the security tokens.");
// ------------------------------------------------------------------------