Hide Forgot
project_key: SOA If a new node is created on JcrSession (folder) and then moved to another name (rename) then after the commit the original name is still in place. Code Node root = session.getRootNode(); Node old = root.addNode("oldname", "nt:folder"); System.out.println("Old present: " + session.nodeExists("/oldname")); session.move("/oldname", "/newname"); System.out.println("Old present: " + session.nodeExists("/oldname")); System.out.println("New present: " + session.nodeExists("/newname")); session.save(); System.out.println("Old present: " + session.nodeExists("/oldname")); System.out.println("New present: " + session.nodeExists("/newname")); Gives [testng] Old present: true [testng] Old present: false [testng] New present: true [testng] Old present: true [testng] New present: false And the file system contains oldname directory instead of newname
Link: Added: This issue depends MODE-944
ModeShape fix was checked into the 2.2.x product branch and should be in the ER4 build.
Verified in ER4
Link: Added: This issue related SOA-2562