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

Use Azure SDK to upload files to Azure Blob #3033

Merged
merged 21 commits into from
Jan 8, 2024
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
yacaovsnc committed Jan 2, 2024
commit 8ee8757cfb26c8a0cd8344ed5e287d836777bcf5
2 changes: 1 addition & 1 deletion src/Runner.Common/JobServerQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void Start(Pipelines.AgentJobRequestMessage jobRequest, bool resultsServi
liveConsoleFeedUrl = feedStreamUrl;
}
jobRequest.Variables.TryGetValue("system.github.results_upload_with_sdk", out VariableValue resultsUseSdkVariable);
_resultsServer.InitializeResultsClient(new Uri(resultsReceiverEndpoint), liveConsoleFeedUrl, accessToken, Convert.ToBoolean(resultsEndpointVariable?.Value));
_resultsServer.InitializeResultsClient(new Uri(resultsReceiverEndpoint), liveConsoleFeedUrl, accessToken, Convert.ToBoolean(resultsUseSdkVariable?.Value));
yacaovsnc marked this conversation as resolved.
Show resolved Hide resolved
_resultsClientInitiated = true;
}

Expand Down