Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upload the diagnostic logs to the Results Service #3114

Merged
Prev Previous commit
Next Next commit
correct typo
  • Loading branch information
jtamsut committed Jan 30, 2024
commit 6811e1b933d3987ebc907d5d4d6d60f61f0fe30d
2 changes: 1 addition & 1 deletion src/Runner.Common/JobServerQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -926,7 +926,7 @@ private async Task UploadSummaryFile(ResultsUploadFileInfo file)
await UploadResultsFile(file, summaryHandler);
}

private async Task UploadDianosticLogsFile(ResultsUploadFileInfo file) {
private async Task UploadDiagnosticLogsFile(ResultsUploadFileInfo file) {
Trace.Info($"Starting to upload diagnostic logs file to results service {file.Name}, {file.Path}");
ResultsFileUploadHandler diagnosticLogsHandler = async (file) =>
{
Expand Down
Loading