This is an automated email from the ASF dual-hosted git repository.

iwasakims pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new 2cc7b4042 BIGTOP-4077: Fix error on deploying Spark due to missing 
log4j.properties.template (#1252)
2cc7b4042 is described below

commit 2cc7b4042d9c359f4c248b2639dea777e91668e7
Author: Mac Chen <[email protected]>
AuthorDate: Mon Apr 15 18:13:44 2024 +0800

    BIGTOP-4077: Fix error on deploying Spark due to missing 
log4j.properties.template (#1252)
---
 bigtop-deploy/puppet/modules/spark/manifests/init.pp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigtop-deploy/puppet/modules/spark/manifests/init.pp 
b/bigtop-deploy/puppet/modules/spark/manifests/init.pp
index 5521dc200..034dc14b2 100644
--- a/bigtop-deploy/puppet/modules/spark/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/spark/manifests/init.pp
@@ -255,8 +255,8 @@ class spark {
       require => Package['spark-core'],
     }
 
-    file { '/etc/spark/conf/log4j.properties':
-      source  => '/etc/spark/conf/log4j.properties.template',
+    file { '/etc/spark/conf/log4j2.properties':
+      source  => '/etc/spark/conf/log4j2.properties.template',
       require => Package['spark-core'],
     }
   }

Reply via email to