Skip to content

Commit

Permalink
Update factoryManagerCache initial value to not share factoryCache.
Browse files Browse the repository at this point in the history
(cherry picked from commit 005e2fa)
  • Loading branch information
rwjblue authored and chancancode committed Mar 14, 2017
1 parent 8fb1fb9 commit 2a1b600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/container/lib/container.js
Expand Up @@ -38,7 +38,7 @@ export default function Container(registry, options) {
this.owner = options && options.owner ? options.owner : null;
this.cache = dictionary(options && options.cache ? options.cache : null);
this.factoryCache = dictionary(options && options.factoryCache ? options.factoryCache : null);
this.factoryManagerCache = dictionary(options && options.factoryCache ? options.factoryCache : null);
this.factoryManagerCache = dictionary(options && options.factoryManagerCache ? options.factoryManagerCache : null);
this.validationCache = dictionary(options && options.validationCache ? options.validationCache : null);
this._fakeContainerToInject = buildFakeContainerWithDeprecations(this);
this[CONTAINER_OVERRIDE] = undefined;
Expand Down

0 comments on commit 2a1b600

Please sign in to comment.