Skip to content

Commit

Permalink
TS-40269 Replace report extension for Artifactory upload, prepare rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
Raphael-N committed Sep 11, 2024
1 parent 75b2a92 commit d9afd71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Please prefix each entry with one of:

# Next Release

# v24.5.1
- [fix] Upload Daemon uploaded to Artifactory in the wrong format

# v24.5.0
- [fix] Updated legacy API calls in Upload Daemon

Expand Down
2 changes: 1 addition & 1 deletion UploadDaemon/Upload/ArtifactoryUpload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task<bool> UploadLineCoverageAsync(string originalTraceFilePath, st
string encodedPathSuffix = HttpUtility.UrlEncode(artifactory.PathSuffix);
url = $"{url}/{encodedPathSuffix}";
}
string fileName = $"{artifactory.Partition}/report.simple";
string fileName = $"{artifactory.Partition}/report.txt";

logger.Debug("Uploading line coverage from {trace} to {artifactory} ({url})", originalTraceFilePath, artifactory.ToString(), url);

Expand Down

0 comments on commit d9afd71

Please sign in to comment.