Skip to content

Commit

Permalink
retry no key
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaina committed Mar 9, 2024
1 parent 74c8f0a commit 6907b65
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ export class InboxProcessorService {

// publicKey がなくても終了
if (authUser.key == null) {
throw new Bull.UnrecoverableError('skip: failed to resolve user publicKey');
// publicKeyがないのはpublicKeyの変更(主にmain→ed25519)に
// 対応しきれていない場合があるためリトライする
throw new Error('skip: failed to resolve user publicKey');
}

// HTTP-Signatureの検証
Expand Down

0 comments on commit 6907b65

Please sign in to comment.