Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.11
3.0.12
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,9 @@ await RetryPolicies.FileOperations.ExecuteAsync(async () =>
component.Roles?.Any() == true ? string.Join(',', component.Roles) : null);

// Upload the file as-is. If the file was timestamped, then it will be uploaded with that timestamp.
string subDirectory = fileSystem.GetRelativeSubdirectory(component.GetLogDirectory(), logFilePath);
FileUploadDescriptor descriptor = component.CreateFileUploadDescriptor(fileContext, timestamped: false, subPath: subDirectory);
// string subDirectory = fileSystem.GetRelativeSubdirectory(component.GetLogDirectory(), logFilePath);
// FileUploadDescriptor descriptor = component.CreateFileUploadDescriptor(fileContext, timestamped: false, subPath: subDirectory);
FileUploadDescriptor descriptor = component.CreateFileUploadDescriptor(fileContext, timestamped: false);

await component.RequestFileUploadAsync(descriptor);
}
Expand Down
Loading