-
Notifications
You must be signed in to change notification settings - Fork 33
Description
Hello,
We are working on fetching changelist entries between two snapshots using the Isilon SDK. While doing so, we noticed an issue:
When an object is returned as a removed entry, attempting to fetch its file_type reports the value as removed, rather than its original file type (e.g., file, directory, symlink, etc.).
This makes it difficult to determine what type of object was deleted, which is important for downstream processing.
Steps to Reproduce:
Create two snapshots with a file or directory present in the first snapshot but deleted in the second.
Fetch changelist entries between the two snapshots.
Retrieve the file_type of the removed entry.
Observed Behavior:
The file_type field shows as removed.
Expected Behavior:
The file_type should reflect the actual type of the object prior to deletion (e.g., file, dir), or at least provide a way to retrieve it.
"regular" -> for file
"directory" -> for directory
