Merge pull request #2440 from fawhgb/rm-fileplan-caching-issue

Fixes the caching issue by returning a copy of the set instead of the Set
This commit is contained in:
Manish Kumar
2024-05-02 12:53:50 +05:30
committed by GitHub

View File

@@ -219,7 +219,7 @@ public class FilePlanServiceImpl extends ServiceBaseImpl
}
else
{
return rmContainerCacheManager.get(storeRef);
return new HashSet<>(rmContainerCacheManager.get(storeRef));
}
return results;