Skip to content

Commit ea54910

Browse files
committed
ok
1 parent 9167c6c commit ea54910

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/infra/docs-lambda-index-publisher/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ static async Task<string> Handler(SQSEvent ev, ILambdaContext context)
4040
await Task.Delay(100);
4141
foreach (var record in ev.Records)
4242
{
43-
var message = LinkReference.Deserialize(record.Body);
44-
context.Logger.LogInformation($"Received message: {message}");
43+
context.Logger.LogInformation($"Received message: {record.Body}");
4544

4645
// Delete the message from the queue
4746
var sqsClient = new AmazonSQSClient();

0 commit comments

Comments
 (0)