Dear Members,
I am facing one issue while deleting a component from a page.
In aem's error log I can see below warning when try to delete an already authored component in it though component get deleted.
Some more details:
this stack trace is from my local.
I am not able to reproduce this issue in wknd site on the same local instance.
though I can see this warning in error log but component get deleted with this warning.
so I just wanted to check, is there any way we can handle this warning ?
As per this https://github.com/jwadolowski/cookbook-cq/issues/37 it seems to be a bug but still if anyone can provide some input on it.
Thanks
Umesh Thakur
Solved! Go to Solution.
Views
Replies
Total Likes
Thanks everyone for spending sometime for the below issue.
Now we have the root cause of the below warning that is :
We have one org.apache.sling.rewriter.Transformer and org.apache.sling.rewriter.TransformerFactory implementation in our project that was looking for the path, which was deleted as part of the deletion activity, and trying to do some operation.
This issue occurs when two threads concurrently try to write or perform same operation to the same location.
Is this reproducible for all the components or for any specific component? Also is this on all the pages or on any specific page?
Thanks!
Views
Replies
Total Likes
If the issue is not reproducible on the WKND site, I highly doubt it's an issue with the core AEM code and the issue might be related to the Sling model Or other backend custom code that gets invoked during the component deletion.
That said, If you are able to reproduce it without any custom code, I would recommend logging a support case.
@Umesh_Thakur Can you please check below article and try checking mentioned root cause to fix your issue if that helps.
In most cases, the following might be root cause:
Thanks everyone for spending sometime for the below issue.
Now we have the root cause of the below warning that is :
We have one org.apache.sling.rewriter.Transformer and org.apache.sling.rewriter.TransformerFactory implementation in our project that was looking for the path, which was deleted as part of the deletion activity, and trying to do some operation.
Views
Likes
Replies