use redpanda queue (#8291)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2025-03-22 13:55:46 +05:00
committed by GitHub
parent 1f82104933
commit 58eb205688
143 changed files with 2288 additions and 2018 deletions
@@ -701,7 +701,7 @@ export class PullRequestSyncManager extends IssueSyncManagerBase implements DocS
for (const [, txes] of groupedByTodo) {
const todo = TxProcessor.buildDoc2Doc<ToDo>(txes)
if (todo !== undefined && h.hasMixin(todo, github.mixin.GithubTodo)) {
if (todo != null && h.hasMixin(todo, github.mixin.GithubTodo)) {
removedTodos.push(h.as(todo, github.mixin.GithubTodo))
}
}