Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,15 @@ export class RecordOpenApiService {
return res;
}

@retryOnDeadlock()
async simpleUpdateRecords(tableId: string, updateRecordsRo: IUpdateRecordsRo) {
return await this.recordModifyService.simpleUpdateRecords(
tableId,
updateRecordsRo as IUpdateRecordsInternalRo
return await this.prismaService.$tx(
async () =>
this.recordModifyService.simpleUpdateRecords(
tableId,
updateRecordsRo as IUpdateRecordsInternalRo
),
{ timeout: this.thresholdConfig.bigTransactionTimeout }
);
}

Expand Down
Loading