We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f3e1b7d + 5854392 commit f0d1918Copy full SHA for f0d1918
.circleci/config.yml
@@ -68,6 +68,7 @@ workflows:
68
branches:
69
only:
70
- develop
71
+ - pm-2539
72
73
# Production builds are exectuted only on tagged commits to the
74
# master branch.
src/shared/modules/global/prisma.service.ts
@@ -12,6 +12,11 @@ export class PrismaService
12
13
constructor(private readonly prismaErrorService?: PrismaErrorService) {
14
super({
15
+ transactionOptions: {
16
+ timeout: process.env.GROUPS_SERVICE_PRISMA_TIMEOUT
17
+ ? parseInt(process.env.GROUPS_SERVICE_PRISMA_TIMEOUT, 10)
18
+ : 10000,
19
+ },
20
log: [
21
{ level: 'query', emit: 'event' },
22
{ level: 'info', emit: 'event' },
0 commit comments