Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/Common/FileAccess/FileAccessRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,15 @@ public void AddFileAccess(FileAccessData fileAccessData)
// Augmented file accesses may not be in a canonical form (may have "..\..\")
if (isAnAugmentedFileAccess)
{
path = Path.GetFullPath(path);
try
{
path = Path.GetFullPath(path);
}
catch (NotSupportedException ex)
{
throw new NotSupportedException(
$"Path.GetFullPath failed for path: `{path}`. Node Id: {_nodeContext.Id}, Process Id: {fileAccessData.ProcessId}", ex);
}
}

if (operation == ReportedFileOperation.Process)
Expand Down