Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 239523e

Browse files
committed
fix
1 parent f4e9ccb commit 239523e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceLayer.Mesh/Functions/FileExtractFunction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public async Task Run([QueueTrigger("file-extract")] FileExtractQueueMessage mes
6565
var blobPath = await meshFileBlobStore.UploadAsync(file, meshResponse.Response.FileAttachment.Content);
6666

6767
var meshAcknowledgementResponse = await meshInboxService.AcknowledgeMessageByIdAsync(configuration.NbssMeshMailboxId, message.FileId);
68-
if (!meshResponse.IsSuccessful)
68+
if (!meshAcknowledgementResponse.IsSuccessful)
6969
{
7070
// TODO - what to do if unsuccessful?
7171
throw new InvalidOperationException($"Mesh acknowledgement failed: {meshResponse.Error}");

0 commit comments

Comments
 (0)