[jira] [Updated] (OAK-10544) oak-jcr: remapping a namespace prefix leaves namespace resolver in broken state

2023-11-09 Thread Julian Reschke (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Reschke updated OAK-10544:
-
Component/s: core

> oak-jcr: remapping a namespace prefix leaves namespace resolver in broken 
> state
> ---
>
> Key: OAK-10544
> URL: https://issues.apache.org/jira/browse/OAK-10544
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
>
> Remapping a prefix to a different namespaceURI should leave the registry in a 
> consistent state; access to nodes that were created using the previous prefix 
> mapping still needs to work.
> Likely cause is that LocaleNameMapper indeed mints a new prefix, but doesn't 
> add it to the session registry.
> The (ignored) test (from OAK-10545) currently fails with:
> {noformat}
> [ERROR] Tests run: 14, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 4.732 s <<< FAILURE! - in org.apache.jackrabbit.oak.jcr.NamePathTest
> [ERROR] testPrefixRemapping(org.apache.jackrabbit.oak.jcr.NamePathTest)  Time 
> elapsed: 0.235 s  <<< ERROR!
> javax.jcr.NamespaceException: internal error: failed to resolve namespace 
> prefix
> at 
> org.apache.jackrabbit.spi.commons.namespace.SessionNamespaceResolver.getURI(SessionNamespaceResolver.java:62)
> at 
> org.apache.jackrabbit.spi.commons.conversion.NameParser.parse(NameParser.java:189)
> at 
> org.apache.jackrabbit.spi.commons.conversion.ParsingNameResolver.getQName(ParsingNameResolver.java:64)
> at 
> org.apache.jackrabbit.spi.commons.conversion.DefaultNamePathResolver.getQName(DefaultNamePathResolver.java:74)
> at 
> org.apache.jackrabbit.oak.jcr.NamePathTest.testPrefixRemapping(NamePathTest.java:255)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.base/java.lang.reflect.Method.invoke(Method.java:566)
> at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
> at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
> at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
> at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
> at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
> at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at 
> org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
> at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
> at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
> at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
> Caused by: javax.jcr.NamespaceException: Unknown namespace prefix: 
> nstest-20592706202
> at 
> org.apache.jackrabbit.oak.jcr.session.SessionNamespaces.getNamespaceURI(SessionNamespaces.java:132)
> at 
> 

[jira] [Updated] (OAK-10544) oak-jcr: remapping a namespace prefix leaves namespace resolver in broken state

2023-11-09 Thread Julian Reschke (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Reschke updated OAK-10544:
-
Fix Version/s: 1.60.0

> oak-jcr: remapping a namespace prefix leaves namespace resolver in broken 
> state
> ---
>
> Key: OAK-10544
> URL: https://issues.apache.org/jira/browse/OAK-10544
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: core, jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
> Fix For: 1.60.0
>
>
> Remapping a prefix to a different namespaceURI should leave the registry in a 
> consistent state; access to nodes that were created using the previous prefix 
> mapping still needs to work.
> Likely cause is that LocaleNameMapper indeed mints a new prefix, but doesn't 
> add it to the session registry.
> The (ignored) test (from OAK-10545) currently fails with:
> {noformat}
> [ERROR] Tests run: 14, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 4.732 s <<< FAILURE! - in org.apache.jackrabbit.oak.jcr.NamePathTest
> [ERROR] testPrefixRemapping(org.apache.jackrabbit.oak.jcr.NamePathTest)  Time 
> elapsed: 0.235 s  <<< ERROR!
> javax.jcr.NamespaceException: internal error: failed to resolve namespace 
> prefix
> at 
> org.apache.jackrabbit.spi.commons.namespace.SessionNamespaceResolver.getURI(SessionNamespaceResolver.java:62)
> at 
> org.apache.jackrabbit.spi.commons.conversion.NameParser.parse(NameParser.java:189)
> at 
> org.apache.jackrabbit.spi.commons.conversion.ParsingNameResolver.getQName(ParsingNameResolver.java:64)
> at 
> org.apache.jackrabbit.spi.commons.conversion.DefaultNamePathResolver.getQName(DefaultNamePathResolver.java:74)
> at 
> org.apache.jackrabbit.oak.jcr.NamePathTest.testPrefixRemapping(NamePathTest.java:255)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.base/java.lang.reflect.Method.invoke(Method.java:566)
> at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
> at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
> at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
> at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
> at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
> at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at 
> org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
> at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
> at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
> at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:418)
> Caused by: javax.jcr.NamespaceException: Unknown namespace prefix: 
> nstest-20592706202
> at 
> 

[jira] [Commented] (OAK-10545) oak-jcr: add test for observing effect of remapping a namespace prefix to a different namespace name

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10545?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784707#comment-17784707
 ] 

Julian Reschke commented on OAK-10545:
--

trunk: 
[e2a3d46934|https://github.com/apache/jackrabbit-oak/commit/e2a3d46934dfc52c6cf35244998ce36345abd388]

> oak-jcr: add test for observing effect of remapping a namespace prefix to a 
> different namespace name
> 
>
> Key: OAK-10545
> URL: https://issues.apache.org/jira/browse/OAK-10545
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
>  Labels: candidate_oak_1_22
> Fix For: 1.60.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (OAK-10545) oak-jcr: add test for observing effect of remapping a namespace prefix to a different namespace name

2023-11-09 Thread Julian Reschke (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Reschke updated OAK-10545:
-
Labels: candidate_oak_1_22  (was: )

> oak-jcr: add test for observing effect of remapping a namespace prefix to a 
> different namespace name
> 
>
> Key: OAK-10545
> URL: https://issues.apache.org/jira/browse/OAK-10545
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
>  Labels: candidate_oak_1_22
> Fix For: 1.60.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (OAK-10545) oak-jcr: add test for observing effect of remapping a namespace prefix to a different namespace name

2023-11-09 Thread Julian Reschke (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Reschke resolved OAK-10545.
--
Fix Version/s: 1.60.0
   Resolution: Fixed

> oak-jcr: add test for observing effect of remapping a namespace prefix to a 
> different namespace name
> 
>
> Key: OAK-10545
> URL: https://issues.apache.org/jira/browse/OAK-10545
> Project: Jackrabbit Oak
>  Issue Type: Technical task
>  Components: jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
> Fix For: 1.60.0
>
>




--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OAK-10544) oak-jcr: remapping a namespace prefix leaves namespace resolver in broken state

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10544?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784703#comment-17784703
 ] 

Julian Reschke commented on OAK-10544:
--

Seems that this was broken as part of OAK-715; see 
https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3#diff-d7bc28cebe7a2372984e71cd634731fb7a27164406a88a9670786e2404a5346eL65
 (cc [~mreutegg])

> oak-jcr: remapping a namespace prefix leaves namespace resolver in broken 
> state
> ---
>
> Key: OAK-10544
> URL: https://issues.apache.org/jira/browse/OAK-10544
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: jcr
>Reporter: Julian Reschke
>Assignee: Julian Reschke
>Priority: Major
>
> Remapping a prefix to a different namespaceURI should leave the registry in a 
> consistent state; access to nodes that were created using the previous prefix 
> mapping still needs to work.
> Likely cause is that LocaleNameMapper indeed mints a new prefix, but doesn't 
> add it to the session registry.
> The (ignored) test (from OAK-10545) currently fails with:
> {noformat}
> [ERROR] Tests run: 14, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 
> 4.732 s <<< FAILURE! - in org.apache.jackrabbit.oak.jcr.NamePathTest
> [ERROR] testPrefixRemapping(org.apache.jackrabbit.oak.jcr.NamePathTest)  Time 
> elapsed: 0.235 s  <<< ERROR!
> javax.jcr.NamespaceException: internal error: failed to resolve namespace 
> prefix
> at 
> org.apache.jackrabbit.spi.commons.namespace.SessionNamespaceResolver.getURI(SessionNamespaceResolver.java:62)
> at 
> org.apache.jackrabbit.spi.commons.conversion.NameParser.parse(NameParser.java:189)
> at 
> org.apache.jackrabbit.spi.commons.conversion.ParsingNameResolver.getQName(ParsingNameResolver.java:64)
> at 
> org.apache.jackrabbit.spi.commons.conversion.DefaultNamePathResolver.getQName(DefaultNamePathResolver.java:74)
> at 
> org.apache.jackrabbit.oak.jcr.NamePathTest.testPrefixRemapping(NamePathTest.java:255)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.base/java.lang.reflect.Method.invoke(Method.java:566)
> at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
> at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
> at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
> at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
> at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
> at 
> org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at 
> org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
> at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
> at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
> at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
> at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238)
> at 
> org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:159)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:384)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:345)
> at 
> org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:126)
> at 
> 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:37 AM:
--

trunk: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.4: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.0: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]



was (Author: reschke):
trunk: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:36 AM:
--

trunk: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 
[2903ab2d52|https://github.com/apache/jackrabbit-oak/commit/2903ab2d52c68efdf9219281839b79598c97580b]
 (1.6.9) 
[7a106018fb|https://github.com/apache/jackrabbit-oak/commit/7a106018fb0cc8fb5002341afc38dd6ed00bbc38]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.4: (1.4.20) 
[c112729c6f|https://github.com/apache/jackrabbit-oak/commit/c112729c6fa28e966de8fa0f41b8b76271698f51]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.2: (1.2.28) 
[5e1661c564|https://github.com/apache/jackrabbit-oak/commit/5e1661c5643c421d68c85070d54a7db9af357770]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:35 AM:
--

trunk: (1.9.0) 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 
[2903ab2d52|https://github.com/apache/jackrabbit-oak/commit/2903ab2d52c68efdf9219281839b79598c97580b]
 (1.6.9) 
[7a106018fb|https://github.com/apache/jackrabbit-oak/commit/7a106018fb0cc8fb5002341afc38dd6ed00bbc38]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.4: (1.4.20) 
[c112729c6f|https://github.com/apache/jackrabbit-oak/commit/c112729c6fa28e966de8fa0f41b8b76271698f51]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:34 AM:
--

trunk: (1.9.0) 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 
[2903ab2d52|https://github.com/apache/jackrabbit-oak/commit/2903ab2d52c68efdf9219281839b79598c97580b]
 (1.6.9) 
[7a106018fb|https://github.com/apache/jackrabbit-oak/commit/7a106018fb0cc8fb5002341afc38dd6ed00bbc38]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.4: (1.4.20) 
[c112729c6f|https://github.com/apache/jackrabbit-oak/commit/c112729c6fa28e966de8fa0f41b8b76271698f51]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:34 AM:
--

trunk: (1.9.0) 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 
[2903ab2d52|https://github.com/apache/jackrabbit-oak/commit/2903ab2d52c68efdf9219281839b79598c97580b]
 (1.6.9) 
[7a106018fb|https://github.com/apache/jackrabbit-oak/commit/7a106018fb0cc8fb5002341afc38dd6ed00bbc38]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:33 AM:
--

trunk: (1.9.0) 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 
[2903ab2d52|https://github.com/apache/jackrabbit-oak/commit/2903ab2d52c68efdf9219281839b79598c97580b]
 (1.6.9) 
[7a106018fb|https://github.com/apache/jackrabbit-oak/commit/7a106018fb0cc8fb5002341afc38dd6ed00bbc38]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:32 AM:
--

trunk: (1.9.0) 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:32 AM:
--

trunk: (1.9.0) 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.6: (1.6.18) 
[0edc57f155|https://github.com/apache/jackrabbit-oak/commit/0edc57f1556121b4d48dc3a08ca434fb32524512]
 
[c65c5e5bb8|https://github.com/apache/jackrabbit-oak/commit/c65c5e5bb8efcc3cc31a920895b2b350f944c806]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:31 AM:
--

trunk: (1.9.0) 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:31 AM:
--

trunk: (1.9.0) 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 
[7034872849|https://github.com/apache/jackrabbit-oak/commit/70348728495582416dcc27bb23126827db108a33]
 (1.8.1) 
[079e031cd2|https://github.com/apache/jackrabbit-oak/commit/079e031cd2034f9b34a92daaccbf05f280b2626f]
 
[07a189f95f|https://github.com/apache/jackrabbit-oak/commit/07a189f95fff704a4c0f01d8817e63be79c4e74c]
 
[2ab7e4557a|https://github.com/apache/jackrabbit-oak/commit/2ab7e4557a7238b3521e63fa0f2d2e8b07b1cae7]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:30 AM:
--

trunk: (1.9.0) 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.8: (1.8.14) 
[fb414f785c|https://github.com/apache/jackrabbit-oak/commit/fb414f785cb8300044c184e49a1808b5098e3af2]
 (1.8.4) 
[3aea89dc61|https://github.com/apache/jackrabbit-oak/commit/3aea89dc61da884659bc5fee1ad25ee0b2d21f07]
 

[jira] [Comment Edited] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke edited comment on OAK-715 at 11/10/23 7:29 AM:
--

trunk: (1.9.0) 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 

[jira] [Commented] (OAK-10536) Build Jackrabbit/jackrabbit-oak-trunk #1257 failed

2023-11-09 Thread Hudson (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784484#comment-17784484
 ] 

Hudson commented on OAK-10536:
--

Previously failing build now is OK.
 Passed run: [Jackrabbit/jackrabbit-oak-trunk 
#1262|https://ci-builds.apache.org/job/Jackrabbit/job/jackrabbit-oak-trunk/1262/]
 [console 
log|https://ci-builds.apache.org/job/Jackrabbit/job/jackrabbit-oak-trunk/1262/console]

> Build Jackrabbit/jackrabbit-oak-trunk #1257 failed
> --
>
> Key: OAK-10536
> URL: https://issues.apache.org/jira/browse/OAK-10536
> Project: Jackrabbit Oak
>  Issue Type: Bug
>  Components: continuous integration
>Reporter: Hudson
>Priority: Major
>
> No description is provided
> The build Jackrabbit/jackrabbit-oak-trunk #1257 has failed.
> First failed run: [Jackrabbit/jackrabbit-oak-trunk 
> #1257|https://ci-builds.apache.org/job/Jackrabbit/job/jackrabbit-oak-trunk/1257/]
>  [console 
> log|https://ci-builds.apache.org/job/Jackrabbit/job/jackrabbit-oak-trunk/1257/console]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Closed] (OAK-10511) Get blobId without additional network roundtrip

2023-11-09 Thread Axel Hanikel (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10511?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Axel Hanikel closed OAK-10511.
--

> Get blobId without additional network roundtrip
> ---
>
> Key: OAK-10511
> URL: https://issues.apache.org/jira/browse/OAK-10511
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: segment-tar
>Reporter: Axel Hanikel
>Priority: Major
>
> There is another opportunity to save a network roundtrip to the blobstore, 
> please see: https://github.com/apache/jackrabbit-oak/pull/1171
> /cc: [~miroslav] [~adulceanu] [~jelmini]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Resolved] (OAK-10511) Get blobId without additional network roundtrip

2023-11-09 Thread Axel Hanikel (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10511?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Axel Hanikel resolved OAK-10511.

Resolution: Fixed

> Get blobId without additional network roundtrip
> ---
>
> Key: OAK-10511
> URL: https://issues.apache.org/jira/browse/OAK-10511
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: segment-tar
>Reporter: Axel Hanikel
>Priority: Major
>
> There is another opportunity to save a network roundtrip to the blobstore, 
> please see: https://github.com/apache/jackrabbit-oak/pull/1171
> /cc: [~miroslav] [~adulceanu] [~jelmini]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (OAK-10546) Tika 1.28.5 includes a vulnerable Guava dependency

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784451#comment-17784451
 ] 

Julian Reschke edited comment on OAK-10546 at 11/9/23 1:23 PM:
---

I believe we can simply exclude it in the dependency declaration where Tika is 
used.

We should also work on the Tika update (see OAK-9752).


was (Author: reschke):
I believe we can simply exclude it in the dependency declaration where Tika is 
used.

We should also open a ticket to update Tika to a version that is maintained.

> Tika 1.28.5 includes a vulnerable Guava dependency
> --
>
> Key: OAK-10546
> URL: https://issues.apache.org/jira/browse/OAK-10546
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: oak-examples, oak-run, oak-search-elastic, oak-solr-core
>Reporter: Fabrizio Fortino
>Assignee: Fabrizio Fortino
>Priority: Major
>
> Guava 31.1 has a critical vulnerability [0]. It is included as a transient 
> dependency of Tika 1.28.5 [1]. This is the latest 1.x available release of 
> Tika. Being EOL it won't receive any security-related updates [2].
> The work to upgrade to Tika 2.x would require some time.
> If possible, we should find an alternative solution to avoid including this 
> vulnerable dependency.
> [0] [https://www.opencve.io/cve/CVE-2023-2976] 
> [1] [https://mvnrepository.com/artifact/org.apache.tika/tika-parsers/1.28.5]
> [2] [https://lists.apache.org/thread/yq6n7o01kw544dvj1jsoqk29g6yqjkp3] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Assigned] (OAK-10546) Tika 1.28.5 includes a vulnerable Guava dependency

2023-11-09 Thread Fabrizio Fortino (Jira)


 [ 
https://issues.apache.org/jira/browse/OAK-10546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Fabrizio Fortino reassigned OAK-10546:
--

Assignee: Fabrizio Fortino

> Tika 1.28.5 includes a vulnerable Guava dependency
> --
>
> Key: OAK-10546
> URL: https://issues.apache.org/jira/browse/OAK-10546
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: oak-examples, oak-run, oak-search-elastic, oak-solr-core
>Reporter: Fabrizio Fortino
>Assignee: Fabrizio Fortino
>Priority: Major
>
> Guava 31.1 has a critical vulnerability [0]. It is included as a transient 
> dependency of Tika 1.28.5 [1]. This is the latest 1.x available release of 
> Tika. Being EOL it won't receive any security-related updates [2].
> The work to upgrade to Tika 2.x would require some time.
> If possible, we should find an alternative solution to avoid including this 
> vulnerable dependency.
> [0] [https://www.opencve.io/cve/CVE-2023-2976] 
> [1] [https://mvnrepository.com/artifact/org.apache.tika/tika-parsers/1.28.5]
> [2] [https://lists.apache.org/thread/yq6n7o01kw544dvj1jsoqk29g6yqjkp3] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OAK-10546) Tika 1.28.5 includes a vulnerable Guava dependency

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784451#comment-17784451
 ] 

Julian Reschke commented on OAK-10546:
--

I believe we can simply exclude it in the dependency declaration where Tika is 
used.

We should also open a ticket to update Tika to a version that is maintained.

> Tika 1.28.5 includes a vulnerable Guava dependency
> --
>
> Key: OAK-10546
> URL: https://issues.apache.org/jira/browse/OAK-10546
> Project: Jackrabbit Oak
>  Issue Type: Improvement
>  Components: oak-examples, oak-run, oak-search-elastic, oak-solr-core
>Reporter: Fabrizio Fortino
>Priority: Major
>
> Guava 31.1 has a critical vulnerability [0]. It is included as a transient 
> dependency of Tika 1.28.5 [1]. This is the latest 1.x available release of 
> Tika. Being EOL it won't receive any security-related updates [2].
> The work to upgrade to Tika 2.x would require some time.
> If possible, we should find an alternative solution to avoid including this 
> vulnerable dependency.
> [0] [https://www.opencve.io/cve/CVE-2023-2976] 
> [1] [https://mvnrepository.com/artifact/org.apache.tika/tika-parsers/1.28.5]
> [2] [https://lists.apache.org/thread/yq6n7o01kw544dvj1jsoqk29g6yqjkp3] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Created] (OAK-10546) Tika 1.28.5 includes a vulnerable Guava dependency

2023-11-09 Thread Fabrizio Fortino (Jira)
Fabrizio Fortino created OAK-10546:
--

 Summary: Tika 1.28.5 includes a vulnerable Guava dependency
 Key: OAK-10546
 URL: https://issues.apache.org/jira/browse/OAK-10546
 Project: Jackrabbit Oak
  Issue Type: Improvement
  Components: oak-search-elastic, oak-solr-core, oak-examples, oak-run
Reporter: Fabrizio Fortino


Guava 31.1 has a critical vulnerability [0]. It is included as a transient 
dependency of Tika 1.28.5 [1]. This is the latest 1.x available release of 
Tika. Being EOL it won't receive any security-related updates [2].

The work to upgrade to Tika 2.x would require some time.

If possible, we should find an alternative solution to avoid including this 
vulnerable dependency.

[0] [https://www.opencve.io/cve/CVE-2023-2976] 

[1] [https://mvnrepository.com/artifact/org.apache.tika/tika-parsers/1.28.5]

[2] [https://lists.apache.org/thread/yq6n7o01kw544dvj1jsoqk29g6yqjkp3] 



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (OAK-715) Don't share name space map between SessionImpl and LocalNameMapper

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-715?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784411#comment-17784411
 ] 

Julian Reschke commented on OAK-715:


trunk: (1.9.0) 
[ed904c0f54|https://github.com/apache/jackrabbit-oak/commit/ed904c0f54b728ce865408cc1433c9ccc228ec1b]
 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]
1.22: (1.9.0) 
[ed904c0f54|https://github.com/apache/jackrabbit-oak/commit/ed904c0f54b728ce865408cc1433c9ccc228ec1b]
 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 
[250bcb5ba4|https://github.com/apache/jackrabbit-oak/commit/250bcb5ba4e0e8841d7c4d0378ba7ff85f10ded3]
 
[2f0b933fce|https://github.com/apache/jackrabbit-oak/commit/2f0b933fce22c65b9d0faa952c1179bcc831324b]
 
[ede21a3cb5|https://github.com/apache/jackrabbit-oak/commit/ede21a3cb56dd9e24333a2a0c45963dd8b9e36ce]
 
[b695f60ae5|https://github.com/apache/jackrabbit-oak/commit/b695f60ae5e89a2638281029b62d821b2fff614f]

...in retired branches:
1.10: (1.9.0) 
[ed904c0f54|https://github.com/apache/jackrabbit-oak/commit/ed904c0f54b728ce865408cc1433c9ccc228ec1b]
 
[d021f362dd|https://github.com/apache/jackrabbit-oak/commit/d021f362dd2047f1226bc5e57285fabd598bd5a4]
 
[e666aaa5bb|https://github.com/apache/jackrabbit-oak/commit/e666aaa5bb94c3fabac66244e9b0e55883e7d65d]
 
[599e1d4cf5|https://github.com/apache/jackrabbit-oak/commit/599e1d4cf522ef22f8da06b703037bd040d6208d]
 
[2913d5f184|https://github.com/apache/jackrabbit-oak/commit/2913d5f184e17d7bfa68cf4fcac973800c02c956]
 
[4588fd595e|https://github.com/apache/jackrabbit-oak/commit/4588fd595eaf42bf4b09d0fedb43edf173d389b7]
 
[fe3c5f5248|https://github.com/apache/jackrabbit-oak/commit/fe3c5f524881e5e626f70b44202976cf631559f9]
 
[fe9ae77dcd|https://github.com/apache/jackrabbit-oak/commit/fe9ae77dcde90adfba3c546633d93b72b6fc04f3]
 
[534f5fd190|https://github.com/apache/jackrabbit-oak/commit/534f5fd190eaa8f34e1d2ad5f596d25defdf94f1]
 
[97bd36850e|https://github.com/apache/jackrabbit-oak/commit/97bd36850e12e13983b900a391a57990f793a6e9]
 
[4e455a8ea0|https://github.com/apache/jackrabbit-oak/commit/4e455a8ea0673bb540a318dc5f8177ac7da1ff52]
 (0.10) 
[9326286a04|https://github.com/apache/jackrabbit-oak/commit/9326286a047bb42687bb21cca96dd622d2089262]
 (0.8) 

[jira] [Commented] (OAK-10543) PersistentRedisCacheTest#writeAndReadManySegments fails from time to time

2023-11-09 Thread Miroslav Smiljanic (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784370#comment-17784370
 ] 

Miroslav Smiljanic commented on OAK-10543:
--

 I assumed the issue happens only in redis implementation. 
Added ignore statement in the abstract class:
https://github.com/apache/jackrabbit-oak/commit/ef27c970ea6422b59bcf8ae8cb244d95d5f5b05e

> PersistentRedisCacheTest#writeAndReadManySegments fails from time to time 
> --
>
> Key: OAK-10543
> URL: https://issues.apache.org/jira/browse/OAK-10543
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: segment-azure, segment-tar, segmentmk
>Reporter: Miroslav Smiljanic
>Priority: Major
>
> I can not reproduce it locally but error happens while executing Jenkins job
> https://ci-builds.apache.org/blue/organizations/jenkins/Jackrabbit%2Foak-trunk-pr/detail/PR-1194/2/pipeline/
> {noformat}
> [INFO]  T E S T S
> [INFO] ---
> [INFO] Running 
> org.apache.jackrabbit.oak.segment.remote.queue.SegmentWriteQueueTest
> [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.502 
> s - in org.apache.jackrabbit.oak.segment.remote.queue.SegmentWriteQueueTest
> [INFO] Running org.apache.jackrabbit.oak.segment.remote.RemoteBlobMetadataTest
> [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - 
> in org.apache.jackrabbit.oak.segment.remote.RemoteBlobMetadataTest
> [INFO] Running 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest
> [WARNING] Corrupted STDOUT by directly writing to native stream in forked JVM 
> 1. See FAQ web page and the dump file 
> /home/jenkins/jenkins-agent/712657a4/workspace/Jackrabbit_oak-trunk-pr_PR-1194@2/oak-segment-remote/target/surefire-reports/2023-11-07T16-23-21_354-jvmRun1.dumpstream
> [ERROR] Tests run: 6, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
> 11.913 s <<< FAILURE! - in 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest
> [ERROR] 
> writeAndReadManySegments(org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest)
>   Time elapsed: 8.069 s  <<< FAILURE!
> java.lang.AssertionError: Wait timeout reached
>   at org.junit.Assert.fail(Assert.java:89)
>   at org.junit.Assert.assertTrue(Assert.java:42)
>   at 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.AbstractPersistentCacheTest.assertNoTimeout(AbstractPersistentCacheTest.java:285)
>   at 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.AbstractPersistentCacheTest.writeAndReadManySegments(AbstractPersistentCacheTest.java:116)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.base/java.lang.reflect.Method.invoke(Method.java:566)
>   at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
>   at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
>   at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
>   at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:54)
>   at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
>   at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
>   at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
>   at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
>   at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273)
>   

[jira] [Commented] (OAK-10543) PersistentRedisCacheTest#writeAndReadManySegments fails from time to time

2023-11-09 Thread Julian Reschke (Jira)


[ 
https://issues.apache.org/jira/browse/OAK-10543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17784358#comment-17784358
 ] 

Julian Reschke commented on OAK-10543:
--

[~miroslav] - that doesn't seem to have any effect; maybe because of the 
inheritance from the super class?

> PersistentRedisCacheTest#writeAndReadManySegments fails from time to time 
> --
>
> Key: OAK-10543
> URL: https://issues.apache.org/jira/browse/OAK-10543
> Project: Jackrabbit Oak
>  Issue Type: Task
>  Components: segment-azure, segment-tar, segmentmk
>Reporter: Miroslav Smiljanic
>Priority: Major
>
> I can not reproduce it locally but error happens while executing Jenkins job
> https://ci-builds.apache.org/blue/organizations/jenkins/Jackrabbit%2Foak-trunk-pr/detail/PR-1194/2/pipeline/
> {noformat}
> [INFO]  T E S T S
> [INFO] ---
> [INFO] Running 
> org.apache.jackrabbit.oak.segment.remote.queue.SegmentWriteQueueTest
> [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.502 
> s - in org.apache.jackrabbit.oak.segment.remote.queue.SegmentWriteQueueTest
> [INFO] Running org.apache.jackrabbit.oak.segment.remote.RemoteBlobMetadataTest
> [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - 
> in org.apache.jackrabbit.oak.segment.remote.RemoteBlobMetadataTest
> [INFO] Running 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest
> [WARNING] Corrupted STDOUT by directly writing to native stream in forked JVM 
> 1. See FAQ web page and the dump file 
> /home/jenkins/jenkins-agent/712657a4/workspace/Jackrabbit_oak-trunk-pr_PR-1194@2/oak-segment-remote/target/surefire-reports/2023-11-07T16-23-21_354-jvmRun1.dumpstream
> [ERROR] Tests run: 6, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
> 11.913 s <<< FAILURE! - in 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest
> [ERROR] 
> writeAndReadManySegments(org.apache.jackrabbit.oak.segment.remote.persistentcache.PersistentDiskCacheTest)
>   Time elapsed: 8.069 s  <<< FAILURE!
> java.lang.AssertionError: Wait timeout reached
>   at org.junit.Assert.fail(Assert.java:89)
>   at org.junit.Assert.assertTrue(Assert.java:42)
>   at 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.AbstractPersistentCacheTest.assertNoTimeout(AbstractPersistentCacheTest.java:285)
>   at 
> org.apache.jackrabbit.oak.segment.remote.persistentcache.AbstractPersistentCacheTest.writeAndReadManySegments(AbstractPersistentCacheTest.java:116)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
>   at 
> java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
>   at java.base/java.lang.reflect.Method.invoke(Method.java:566)
>   at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
>   at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
>   at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
>   at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
>   at 
> org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
>   at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:54)
>   at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
>   at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
>   at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
>   at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
>   at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
>   at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
>   at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
>   at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
>   at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
>   at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:365)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:273)
>   at 
> org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:238)
>