This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.testing.sling-mock-1.1.2 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-sling-mock.git
commit 9ee66c6a06ab25daf08acf059ccd9718f58403b6 Author: Robert Munteanu <[email protected]> AuthorDate: Sun Dec 28 22:47:21 2014 +0000 SLING-4269 - SlingContextImpl's resource resolver should be an administrative one git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/mocks/sling-mock@1648267 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/testing/mock/sling/context/SlingContextImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/testing/mock/sling/context/SlingContextImpl.java b/src/main/java/org/apache/sling/testing/mock/sling/context/SlingContextImpl.java index 976c4e0..8db740b 100644 --- a/src/main/java/org/apache/sling/testing/mock/sling/context/SlingContextImpl.java +++ b/src/main/java/org/apache/sling/testing/mock/sling/context/SlingContextImpl.java @@ -185,7 +185,7 @@ public class SlingContextImpl extends OsgiContextImpl { public final ResourceResolver resourceResolver() { if (this.resourceResolver == null) { try { - this.resourceResolver = this.resourceResolverFactory.getResourceResolver(null); + this.resourceResolver = this.resourceResolverFactory.getAdministrativeResourceResolver(null); } catch (LoginException ex) { throw new RuntimeException("Creating resource resolver failed.", ex); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
