Skip to content

Commit

Permalink
Fix missing project
Browse files Browse the repository at this point in the history
  • Loading branch information
FirestarJes committed Sep 8, 2024
1 parent 97b7247 commit 39a077b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private async Task<IEnumerable<RequestedSettlementReportDto>> CheckStatusOfSettl
{
var updatedReport = settlementReport;

if (settlementReport.Status == SettlementReportStatus.InProgress)
if (settlementReport.Status == SettlementReportStatus.InProgress && settlementReport.RequestId != null)
{
var instanceInfo = await durableTaskClient
.GetInstanceAsync(settlementReport.RequestId.Id, getInputsAndOutputs: true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CalculationResults\CalculationResults.Infrastructure\CalculationResults.Infrastructure.csproj" />
<ProjectReference Include="..\Common.Infrastructure\Common.Infrastructure.csproj" />
<ProjectReference Include="..\SettlementReports.Infrastructure\SettlementReports.Infrastructure.csproj" />
<ProjectReference Include="..\SettlementReports.Interfaces\SettlementReports.Interfaces.csproj" />
Expand Down

0 comments on commit 39a077b

Please sign in to comment.