Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0, 2.0
-
None
Description
When using OnCall caching in the file system, there is a ClassCastException in the LocalFileSystem#doReplicateFile function.
To fix the issue, I replaced :
final LocalFile localFile = (LocalFile) fileObject;
by
final LocalFile localFile = (LocalFile) FileObjectUtils.getAbstractFileObject(fileObject);
Attachments
Attachments
Issue Links
- is related to
-
VFS-295 Unsafe comparison in getParent() of AbstractFileObject
- Open