You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by en...@apache.org on 2020/11/27 21:06:40 UTC

[sling-org-apache-sling-jcr-contentloader] branch master updated: SLING-9735 rename service user per suggestion by Oliver

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

enorman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-jcr-contentloader.git


The following commit(s) were added to refs/heads/master by this push:
     new 87e7c39  SLING-9735 rename service user per suggestion by Oliver
87e7c39 is described below

commit 87e7c39ca1222127052a21d7b7122d5478bc8dbf
Author: Eric Norman <en...@apache.org>
AuthorDate: Fri Nov 27 13:06:29 2020 -0800

    SLING-9735 rename service user per suggestion by Oliver
---
 .../apache/sling/jcr/contentloader/it/ContentloaderTestSupport.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/test/java/org/apache/sling/jcr/contentloader/it/ContentloaderTestSupport.java b/src/test/java/org/apache/sling/jcr/contentloader/it/ContentloaderTestSupport.java
index 5a8e1b1..99155d3 100644
--- a/src/test/java/org/apache/sling/jcr/contentloader/it/ContentloaderTestSupport.java
+++ b/src/test/java/org/apache/sling/jcr/contentloader/it/ContentloaderTestSupport.java
@@ -113,14 +113,14 @@ public abstract class ContentloaderTestSupport extends TestSupport {
             // SLING-9735 - add server user for the o.a.s.jcr.contentloader bundle
             factoryConfiguration("org.apache.sling.jcr.repoinit.RepositoryInitializer")
                 .put("scripts", new String[] {
-                        "create service user sling-content-loader\n" +
+                        "create service user sling-jcr-content-loader\n" +
                         "\n" +
-                        "set ACL for sling-content-loader\n" +
+                        "set ACL for sling-jcr-content-loader\n" +
                         "    allow   jcr:all    on /\n" +
                         "end"})
                 .asOption(),
             factoryConfiguration("org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended")
-                .put("user.mapping", new String[]{"org.apache.sling.jcr.contentloader=sling-content-loader"})
+                .put("user.mapping", new String[]{"org.apache.sling.jcr.contentloader=sling-jcr-content-loader"})
                 .asOption(),
             // Sling JCR ContentLoader
             testBundle("bundle.filename"),