Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FagnerMartinsBrack/2194e0819e6696f54ee4b6dc397838d4 to your computer and use it in GitHub Desktop.
Save FagnerMartinsBrack/2194e0819e6696f54ee4b6dc397838d4 to your computer and use it in GitHub Desktop.
(Medium) - HTTP retry
// ...
const isDuplicateRequest = (requestBody) => {
return isRequestIdInDatabase(requestBody.uniqueRequestId);
};
// ...
app.use((req, res) => {
if (isDuplicateRequest(req.body)) {
res.end();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment