mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-05 01:07:41 +02:00
QFIX: Fix reducedCalls to stop in case of error (#9482)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -1551,7 +1551,11 @@ export class GithubWorker implements IntegrationManager {
|
||||
}
|
||||
|
||||
performFullSync = reduceCalls(async () => {
|
||||
await this._performFullSync()
|
||||
try {
|
||||
await this._performFullSync()
|
||||
} catch (err: any) {
|
||||
this.ctx.error('Failed to perform full sync', { error: err })
|
||||
}
|
||||
})
|
||||
|
||||
async _performFullSync (): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user