AEM TagManager Find() operation
The find() method from com.day.cq.tagging.TagManager returns content even after the tag has been moved to a new name.
For example:
1. Create a tag "myNamespace:folder/tag"
2. Add this to a page under Geometrixx website
3. Run tagManager.find("/content/", new String[]{"myNamespace:folder/tag"});
4 .You will get 1 result (page tagged in step 2 above)
5. Move this tag to "myNamespace:folder/newTag"
5-B- Verify in CRX, the page shows the new tag now.
6. Again Run tagManager.find("/content/", new String[]{"myNamespace:folder/tag"});
7. This STILL returns the same page from step2 . Even though the tag has been moved and new name id present in CRX also.
Is this a bug in the OOTB functionality or am I missing something?
