Skip to content

Commit

Permalink
Merge pull request #39 from yukimochi/prevent_retry
Browse files Browse the repository at this point in the history
Prevent redundant retry in registor job.
  • Loading branch information
yukimochi authored Jul 27, 2020
2 parents 13c5d73 + dda20f9 commit c356e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handle.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func pushRelayJob(sourceInbox string, body []byte) {
func pushRegistorJob(inboxURL string, body []byte) {
job := &tasks.Signature{
Name: "registor",
RetryCount: 25,
RetryCount: 2,
Args: []tasks.Arg{
{
Name: "inboxURL",
Expand Down

0 comments on commit c356e47

Please sign in to comment.