You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
context.Logger.LogInformation("Failed to process {batchItemFailuresCount} of {allMessagesCount} messages. Returning them to the queue.",batchItemFailures.Count,ev.Records.Count);
58
58
returnresponse;
59
59
}
60
60
catch(Exceptionex)
61
61
{
62
+
// If we fail to update the link index, we need to return all messages to the queue
63
+
// so that they can be retried later.
62
64
context.Logger.LogError("Failed to update {bucketName}/{indexFile}. Returning all {recordCount} messages to the queue.",bucketName,indexFile,ev.Records.Count);
63
65
context.Logger.LogError(ex,ex.Message);
64
-
// If we fail to update the link index, we need to return all messages to the queue
0 commit comments