File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ workflows:
6868 branches :
6969 only :
7070 - develop
71+ - pm-2539
7172
7273 # Production builds are exectuted only on tagged commits to the
7374 # master branch.
Original file line number Diff line number Diff line change @@ -143,6 +143,11 @@ SERVICEACC02_CID="devadmin1"
143143SERVICEACC02_SECRET = " devadmin1"
144144SERVICEACC02_UID = " 100000027"
145145
146- # Note: Registration default password is no longer configurable; for social/SSO
147- # registrations without a provided password, a unique 16-character random
148- # password is generated at registration time.
146+ # Note: Registration default password is no longer configurable; for social/SSO
147+ # registrations without a provided password, a unique 16-character random
148+ # password is generated at registration time.
149+
150+
151+ # Prisma configuration
152+
153+ IDENTITY_SERVICE_PRISMA_TIMEOUT = 10000
Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ export class MemberPrismaService
66 extends MemberPrismaClient
77 implements OnModuleInit , OnModuleDestroy
88{
9+ constructor ( ) {
10+ super ( {
11+ transactionOptions : {
12+ timeout : process . env . IDENTITY_SERVICE_PRISMA_TIMEOUT
13+ ? parseInt ( process . env . IDENTITY_SERVICE_PRISMA_TIMEOUT , 10 )
14+ : 10000 ,
15+ } ,
16+ } ) ;
17+ }
18+
919 async onModuleInit ( ) {
1020 await this . $connect ( ) ;
1121 }
You can’t perform that action at this time.
0 commit comments