Skip to content

Commit

Permalink
Merge pull request #391 from ucdavis/JCS/NewAeSchema20230802
Browse files Browse the repository at this point in the history
Deal with possible new status from AE
  • Loading branch information
jSylvestre authored Aug 2, 2023
2 parents 76c502c + a99dda5 commit caff7eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Sloth.Core/Jobs/AggieEnterpriseJournalJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ public async Task<AggieEnterpriseJournalJobDetails> UploadTransactions(ILogger l

transactionRunStatus.Action = requestStatus.RequestStatus.ToString();
}
else if(requestStatus.RequestStatus == RequestStatus.Validated)
{
log.Error("Unexpected Aggie Enterprise status of Validated returned.");
}

// TODO: These are likely the only two statuses possible for a new request, but confirm

Expand Down
2 changes: 1 addition & 1 deletion Sloth.Core/Sloth.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AggieEnterpriseApi" Version="0.2.180" />
<PackageReference Include="AggieEnterpriseApi" Version="0.2.187" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.13.0" />
<PackageReference Include="AzureActiveDirectorySearcher" Version="1.0.0" />
<PackageReference Include="ietws" Version="0.2.12" />
Expand Down

0 comments on commit caff7eb

Please sign in to comment.