We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0292158 commit 0121d4dCopy full SHA for 0121d4d
src/app.module.ts
@@ -81,6 +81,7 @@ import { MigrationsModule } from './migrations/migrations.module';
81
host: configService.get('ioredis.host'),
82
port: configService.get('ioredis.port'),
83
},
84
+ blockingConnection: true,
85
}),
86
87
FactorydriveModule.forRootAsync({
src/core/backends/backends.controller.ts
@@ -84,7 +84,7 @@ export class BackendsController {
public async syncAllIdentities(@Res() res: Response, @Query('async') asyncQuery: string) {
const async = /true|on|yes|1/i.test(asyncQuery);
const data = await this.backendsService.syncAllIdentities({
- async,
+ async: false,
88
});
89
return res.status(HttpStatus.ACCEPTED).json({ async, data });
90
}
0 commit comments