While preforming a Get Latest command using the Vault API, some of my users are having errors where the first version of the block is retrieved as opposed to the current/latest version. This is causing errors with my program. I am not sure why this is only happening to some users.
This is what I am using, please let me know if it is correct.
Code: Select all
GetOperations.ProcessCommandGet(
new string[] { vaultFile },
new GetOptions()
{
Merge = MergeType.OverwriteWorkingCopy,
MakeWritable = MakeWritableType.MakeAllFilesWritable
});
Is there some settings in Vault that individual users may have set which is causing this?