Skip to content

Commit

Permalink
Fix BuildRequest (#10455)
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKrivanek authored Jul 27, 2024
1 parent 59c2ff8 commit 43dd7c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Build/BackEnd/Components/RequestBuilder/RequestBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ private async Task<BuildResult> BuildProject()
{
buildCheckManager.StartProjectEvaluation(
BuildCheckDataSource.BuildExecution,
new AnalysisLoggingContext(_nodeLoggingContext.LoggingService, _requestEntry.Request.ParentBuildEventContext),
new AnalysisLoggingContext(_nodeLoggingContext.LoggingService, _requestEntry.Request.BuildEventContext),
_requestEntry.RequestConfiguration.ProjectFullPath);

_requestEntry.RequestConfiguration.LoadProjectIntoConfiguration(
Expand All @@ -1148,13 +1148,13 @@ private async Task<BuildResult> BuildProject()
{
buildCheckManager.EndProjectEvaluation(
BuildCheckDataSource.BuildExecution,
_requestEntry.Request.ParentBuildEventContext);
_requestEntry.Request.BuildEventContext);
}

_projectLoggingContext = _nodeLoggingContext.LogProjectStarted(_requestEntry);
buildCheckManager.StartProjectRequest(
BuildCheckDataSource.BuildExecution,
_requestEntry.Request.ParentBuildEventContext,
_requestEntry.Request.BuildEventContext,
_requestEntry.RequestConfiguration.ProjectFullPath);

try
Expand Down Expand Up @@ -1226,7 +1226,7 @@ private async Task<BuildResult> BuildProject()
{
buildCheckManager.EndProjectRequest(
BuildCheckDataSource.BuildExecution,
new AnalysisLoggingContext(_nodeLoggingContext.LoggingService, _requestEntry.Request.ParentBuildEventContext),
new AnalysisLoggingContext(_nodeLoggingContext.LoggingService, _requestEntry.Request.BuildEventContext),
_requestEntry.RequestConfiguration.ProjectFullPath);
}

Expand Down

0 comments on commit 43dd7c2

Please sign in to comment.