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 f0a75fa6a BIGTOP-4419. Fix deployment failure due to Puppet
incompatibility with Ruby 3.3. (#1346)
f0a75fa6a is described below
commit f0a75fa6acec235c1a21a1570137f29891d9db0d
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Mon May 12 17:41:03 2025 +0900
BIGTOP-4419. Fix deployment failure due to Puppet incompatibility with Ruby
3.3. (#1346)
---
bigtop-deploy/puppet/modules/hadoop/manifests/init.pp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bigtop-deploy/puppet/modules/hadoop/manifests/init.pp
b/bigtop-deploy/puppet/modules/hadoop/manifests/init.pp
index ba1932b82..164235dce 100644
--- a/bigtop-deploy/puppet/modules/hadoop/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/hadoop/manifests/init.pp
@@ -29,7 +29,7 @@ class hadoop ($hadoop_security_authentication = "simple",
$hadoop_http_authentication_type = undef,
$hadoop_http_authentication_signature_secret = undef,
$hadoop_http_authentication_signature_secret_file =
"/etc/hadoop/conf/hadoop-http-authentication-signature-secret",
- $hadoop_http_authentication_cookie_domain = regsubst($fqdn, "^[^\\.]+\\.",
""),
+ $hadoop_http_authentication_cookie_domain = $fqdn.split("\\.")[1,
-1].join("."),
) {
include stdlib