This repository has been archived by the owner on May 18, 2024. It is now read-only.
InsertCollction.getDependencies()
can cause infinite function calls
#64
Labels
As below code is configuring key and value pair of the
dependencies
after the recursive function call of itself, the infinite function calls could be occured if two tables are dependent on each other. Therefore, move thedependencies.set(target, output);
statement from line 171 to 156. By bring the statement in front of the recursive function call, any infinite function call must not be occured.safe-typeorm/src/transactions/InsertCollection.ts
Lines 146 to 176 in 0403e1f
The text was updated successfully, but these errors were encountered: