From dda20f9aecf0d79ede84ce7c2028d2cee3dcb483 Mon Sep 17 00:00:00 2001 From: Naoki Kosaka Date: Mon, 27 Jul 2020 22:26:55 +0900 Subject: [PATCH] Prevent redundant retry in registor job. --- handle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handle.go b/handle.go index 3a934b9..d6da6b8 100644 --- a/handle.go +++ b/handle.go @@ -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",