-
Notifications
You must be signed in to change notification settings - Fork 419
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This ensures we do not miss events. E.g. before: t0: hash changes to X t1: send webhook(X), waiting for response t2: hash changes to Y t3: queue next webhook(Y) but can't send because previous is not done t4: crash t5: restart t6: find repo at hash Y no webhook(Y) was sent. after: t0: hash changes to X t1: send webhook(X), waiting for response t2: hash changes to Y t3: queue next webhook(Y) but can't send because previous is not done t4: crash t5: restart t6: find repo at hash Y t7: send webhook(Y), waiting for response
- Loading branch information
Showing
5 changed files
with
140 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.