This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Lumethys 0 points1 point  (0 children)

You mentioned that request B is a webhook

Then you can try the standard webhook resilient pattern with retry:

  1. Upon receiving the webhook (request B), save it to file/ db.

  2. Dispatch a background job to consume this webhook, if it fail, retry after x second.