Skip to content

Commit f05bdc1

Browse files
committed
Merged below commit from main -
------------------------------------------- Commit 486339a Author: DanOwenUKHO <118909036+DanOwenUKHO@users.noreply.github.com> Date: 28 January 2025 09:35 Parent: 20673ca Tag: 20250210 Dev/update to net8 (#246) * .net 8 Upgrade, package upgrades * Remove Fluent assertions
2 parents 8d1a5a0 + 03dfde5 commit f05bdc1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

UKHO.FmEssFssMock.API/UKHO.FmEssFssMock.API/Services/FileShareService.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public class FileShareService
2929
Batch.BessNoneReadmeBatch
3030
};
3131

32-
private readonly Enum[] aioBatchTypes = new Enum[]
33-
{
32+
private readonly Enum[] aioBatchTypes = {
3433
Batch.AioBaseCDZipIsoSha1Batch,
3534
Batch.AioUpdateZipBatch,
3635
Batch.EssAioBaseZipBatch,
@@ -111,7 +110,7 @@ public BatchDetail GetBatchDetails(string batchId, string homeDirectoryPath)
111110
}
112111

113112
//BESS - batch attributes from Queue message - start
114-
Batch batchEnu = EnumHelper.GetValueFromDescription<Batch>(batchId);
113+
115114
if (bessBatchTypes.Contains(EnumHelper.GetValueFromDescription<Batch>(batchId)))
116115
{
117116
ConfigQueueMessage message = new()

0 commit comments

Comments
 (0)