Skip to content

Commit

Permalink
decrease retry count to 2 (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-goggins authored Nov 27, 2023
1 parent 5ad67a8 commit 8a3f14a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions serverless-functions/host.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
},
"extensions": {
"queues": {
"maxPollingInterval": "00:00:02",
"visibilityTimeout" : "00:00:30",
"batchSize": 16,
"maxDequeueCount": 5,
"newBatchThreshold": 8,
"messageEncoding": "base64"
"maxPollingInterval": "00:00:02",
"visibilityTimeout": "00:00:30",
"batchSize": 16,
"maxDequeueCount": 2,
"newBatchThreshold": 8,
"messageEncoding": "base64"
}
}
}
}

0 comments on commit 8a3f14a

Please sign in to comment.