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 casing
  • Loading branch information
jtamsut committed Jan 30, 2024
commit 440e8aa6a8638c140ac32058be26744a3a4b026f
2 changes: 1 addition & 1 deletion src/Sdk/WebApi/WebApi/ResultsHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private async Task<GetSignedStepLogsURLResponse> GetStepLogUploadUrlAsync(string
return await GetResultsSignedURLResponse<GetSignedStepLogsURLRequest, GetSignedStepLogsURLResponse>(getStepLogsSignedBlobURLEndpoint, cancellationToken, request);
}

private async Task<GetSignedDiagnosticLogsURLResponse> GetSignedDiagnosticLogsURL(string planid, string jobid, cancellationtoken cancellationtoken)
private async Task<GetSignedDiagnosticLogsURLResponse> GetSignedDiagnosticLogsURL(string planid, string jobid, CancellationToken cancellationtoken)
{
var request = new GetSignedDiagnosticLogsURLRequest()
{
Expand Down
Loading