Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
bypass full lookup (#4049)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Lincoln <[email protected]>
  • Loading branch information
nklincoln authored and Dave Kelsey committed May 23, 2018
1 parent c9fa729 commit f7a5040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/composer-runtime/lib/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class Context {
this.container = options.container;

LOG.debug(method, 'Loading sysregistries collection', options.sysregistries);
this.sysregistries = options.sysregistries || await this.getDataService().getCollection('$sysregistries');
this.sysregistries = options.sysregistries || await this.getDataService().getCollection('$sysregistries', true);

if (options.function === 'init') {
// No point loading the participant as no participants exist!
Expand Down

0 comments on commit f7a5040

Please sign in to comment.