Skip to content

Commit

Permalink
rm initTransaction in update as it is already being executed
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwalguptaofficial committed Dec 16, 2024
1 parent b4a8bf5 commit 6616d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/worker/executors/update/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class Update extends BaseFetch {
results = null;
const whereQry = { [key]: { [QUERY_OPTION.In]: inQuery } };
this.query.where = whereQry;
this.initTransaction();
// this.initTransaction();
return this.goToWhereLogic();
});
}
Expand All @@ -94,4 +94,4 @@ export class Update extends BaseFetch {
Update.prototype.executeWhereUndefinedLogic = executeWhereUndefinedLogic;
Update.prototype.executeWhereLogic = executeWhereLogic
Update.prototype.executeRegexLogic = executeRegexLogic
Update.prototype.executeInLogic = executeInLogic
Update.prototype.executeInLogic = executeInLogic

0 comments on commit 6616d81

Please sign in to comment.