From f42554b5fb9c6a163a15de51539da2bc2bd1b56c Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 9 Sep 2024 23:42:54 +0700 Subject: [PATCH] UBERF-8053: Disable re-check for milestones Signed-off-by: Andrey Sobolev --- services/github/pod-github/src/sync/issues.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/github/pod-github/src/sync/issues.ts b/services/github/pod-github/src/sync/issues.ts index cad35aceb3..cc9ebc9f05 100644 --- a/services/github/pod-github/src/sync/issues.ts +++ b/services/github/pod-github/src/sync/issues.ts @@ -429,8 +429,8 @@ export class IssueSyncManager extends IssueSyncManagerBase implements DocSyncMan ) if (target === null) { // We need to wait, no milestone data yet. - this.ctx.error('target === null', { url: info.url }) - return { needSync: '' } + this.ctx.error('target === null, no milestone data yet', { url: info.url }) + return { needSync: githubSyncVersion } } if (target === undefined) { target = this.getProjectIssueTarget(container.project, issueExternal)