We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
※後続処理で防がれているため連合そのものは発生しません
misskey/packages/backend/src/core/NoteCreateService.ts
Lines 680 to 685 in aa48a0e
上記if文に対し、!data.localOnlyの条件を追加して後続処理の無駄打ちを防ぎます。
!data.localOnly
this.renderNoteOrRenoteActivity()にlocalOnlyなノートを渡すとnullが返ってくるのですが、このnullは最終的に↓に流れ着いて何も起こらずに処理が終わります(故に配送されない)
this.renderNoteOrRenoteActivity()
misskey/packages/backend/src/core/QueueService.ts
Line 144 in 7b9c884
The text was updated successfully, but these errors were encountered:
samunohito
Successfully merging a pull request may close this issue.
Summary
※後続処理で防がれているため連合そのものは発生しません
misskey/packages/backend/src/core/NoteCreateService.ts
Lines 680 to 685 in aa48a0e
上記if文に対し、
!data.localOnly
の条件を追加して後続処理の無駄打ちを防ぎます。this.renderNoteOrRenoteActivity()
にlocalOnlyなノートを渡すとnullが返ってくるのですが、このnullは最終的に↓に流れ着いて何も起こらずに処理が終わります(故に配送されない)misskey/packages/backend/src/core/QueueService.ts
Line 144 in 7b9c884
Purpose
(ローカルでベンチマーク的なことをしてCPU使用率に数%ほど差があるのを確認しました)
Do you want to implement this feature yourself?
The text was updated successfully, but these errors were encountered: