File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
services/apps/data_sink_worker/src/service Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -276,6 +276,12 @@ export default class MemberService extends LoggerBase {
276
276
await this . store . transactionally ( async ( txStore ) => {
277
277
const txRepo = new MemberRepository ( txStore , this . log )
278
278
const txIntegrationRepo = new IntegrationRepository ( txStore , this . log )
279
+ const txService = new MemberService (
280
+ txStore ,
281
+ this . nodejsWorkerEmitter ,
282
+ this . searchSyncWorkerEmitter ,
283
+ this . log ,
284
+ )
279
285
280
286
const dbIntegration = await txIntegrationRepo . findById ( integrationId )
281
287
const segmentId = dbIntegration . segmentId
@@ -304,7 +310,7 @@ export default class MemberService extends LoggerBase {
304
310
)
305
311
}
306
312
307
- await this . update (
313
+ await txService . update (
308
314
dbMember . id ,
309
315
tenantId ,
310
316
segmentId ,
You can’t perform that action at this time.
0 commit comments