署名検証失敗はリトライしないように (#6437)

This commit is contained in:
MeiMei 2020-06-03 09:12:54 +09:00 committed by GitHub
parent df0e9d75fe
commit fd2573c068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ export default async (job: Bull.Job<InboxJobData>): Promise<string> => {
return `Blocked request: ${ldHost}`; return `Blocked request: ${ldHost}`;
} }
} else { } else {
throw `skip: http-signature verification failed.`; return `skip: http-signature verification failed and no LD-Signature. keyId=${signature.keyId}`;
} }
} }