Update factory.js

Attempt to address https://github.com/strongloop/loopback-component-storage/issues/289. Looking forward to comments.
This commit is contained in:
Juan Villegas 2020-04-13 11:03:16 -06:00 committed by GitHub
parent 3b1b432b13
commit c4a5a93c29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -37,7 +37,11 @@ function patchBaseClass(cls) {
client: {value: this.client},
files: {value: this.files},
});
m1.call(receiver, details);
// The following line appears to be calling _setProperties recursively, eventually eating up all the memory and killing the
// server. If not commented out, this._metadata = receiver creates a reference to an object that contains exactly the same
// data, which itself contains another reference and so on. The response we get from the api is thus in the order of MBs.
// We noted removing the m1.call line works as expected, however we are unsure what side effects this may have.
// m1.call(receiver, details);
// Apply the calculated properties to this
for (var p in receiver) {
this[p] = receiver[p];