This is an automated email from the ASF dual-hosted git repository.
srowen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 097d509 [MINOR] Fix a typo in FsHistoryProvider loginfo
097d509 is described below
commit 097d5098cca987e5f7bbb8394783c01517ebed0f
Author: Sungpeo Kook <[email protected]>
AuthorDate: Sun May 17 09:43:01 2020 -0500
[MINOR] Fix a typo in FsHistoryProvider loginfo
## What changes were proposed in this pull request?
a typo in logging. (just added `: `)
Closes #28505 from sungpeo/typo_fshistoryprovider.
Authored-by: Sungpeo Kook <[email protected]>
Signed-off-by: Sean Owen <[email protected]>
---
.../main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
b/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
index 99d3ece..25ea75a 100644
---
a/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
+++
b/core/src/main/scala/org/apache/spark/deploy/history/FsHistoryProvider.scala
@@ -108,7 +108,7 @@ private[history] class FsHistoryProvider(conf: SparkConf,
clock: Clock)
private val historyUiAdminAclsGroups =
conf.get(History.HISTORY_SERVER_UI_ADMIN_ACLS_GROUPS)
logInfo(s"History server ui acls " + (if (historyUiAclsEnable) "enabled"
else "disabled") +
"; users with admin permissions: " + historyUiAdminAcls.mkString(",") +
- "; groups with admin permissions" + historyUiAdminAclsGroups.mkString(","))
+ "; groups with admin permissions: " +
historyUiAdminAclsGroups.mkString(","))
private val hadoopConf = SparkHadoopUtil.get.newConfiguration(conf)
// Visible for testing
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]