Details
Description
Need to fix the DataResouce caching issue while render the DataResouce on multi tenant environment.
It might be possible that same data resource id exists for multiple tenant, and as DataResouce caching does not used tenant specific caching so it may lead to incorrect data rendering.
Here is the current code to get the DataResource Teamplate from cache
Template cachedTemplate = FreeMarkerWorker.getTemplate("DataResource:" + dataResourceId);
Need to add the delegator name as prefix to fix the issue.