Skip to content

Commit 6616d81

Browse files
rm initTransaction in update as it is already being executed
1 parent b4a8bf5 commit 6616d81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/worker/executors/update/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export class Update extends BaseFetch {
7777
results = null;
7878
const whereQry = { [key]: { [QUERY_OPTION.In]: inQuery } };
7979
this.query.where = whereQry;
80-
this.initTransaction();
80+
// this.initTransaction();
8181
return this.goToWhereLogic();
8282
});
8383
}
@@ -94,4 +94,4 @@ export class Update extends BaseFetch {
9494
Update.prototype.executeWhereUndefinedLogic = executeWhereUndefinedLogic;
9595
Update.prototype.executeWhereLogic = executeWhereLogic
9696
Update.prototype.executeRegexLogic = executeRegexLogic
97-
Update.prototype.executeInLogic = executeInLogic
97+
Update.prototype.executeInLogic = executeInLogic

0 commit comments

Comments
 (0)