Update factory.js
Attempt to address https://github.com/strongloop/loopback-component-storage/issues/289. Looking forward to comments.
This commit is contained in:
parent
3b1b432b13
commit
c4a5a93c29
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue