diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2020-06-03 09:12:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-03 09:12:54 +0900 |
| commit | fd2573c0688fe5d990e01842834261a07fb02e30 (patch) | |
| tree | 4e8c24ece31485be1d32e467de41b12caeb3a235 /src | |
| parent | Update README.md [AUTOGEN] (#6339) (diff) | |
| download | sharkey-fd2573c0688fe5d990e01842834261a07fb02e30.tar.gz sharkey-fd2573c0688fe5d990e01842834261a07fb02e30.tar.bz2 sharkey-fd2573c0688fe5d990e01842834261a07fb02e30.zip | |
署名検証失敗はリトライしないように (#6437)
Diffstat (limited to 'src')
| -rw-r--r-- | src/queue/processors/inbox.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/queue/processors/inbox.ts b/src/queue/processors/inbox.ts index e0419cad28..8a292107ba 100644 --- a/src/queue/processors/inbox.ts +++ b/src/queue/processors/inbox.ts @@ -97,7 +97,7 @@ export default async (job: Bull.Job<InboxJobData>): Promise<string> => { return `Blocked request: ${ldHost}`; } } else { - throw `skip: http-signature verification failed.`; + return `skip: http-signature verification failed and no LD-Signature. keyId=${signature.keyId}`; } } |