We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 029989f commit 5000455Copy full SHA for 5000455
src/core/backends/backends.service.ts
@@ -3,7 +3,6 @@ import {
3
HttpException,
4
HttpStatus,
5
Injectable,
6
- RequestTimeoutException,
7
UnprocessableEntityException,
8
} from '@nestjs/common';
9
import { ModuleRef } from '@nestjs/core';
@@ -155,7 +154,7 @@ export class BackendsService extends AbstractQueueProcessor {
155
154
},
156
);
157
result[identity.identity._id] = executedJob;
158
- } catch (err: HttpException) {
+ } catch (err: any & HttpException) {
159
this.logger.error(`Error while syncing identity ${identity.identity._id}`, err);
160
result[identity.identity._id] = {
161
...err.response,
0 commit comments