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

Commit f7a5040

Browse files
nklincolndavek-at-ibm
authored andcommitted
bypass full lookup (#4049)
Signed-off-by: Nick Lincoln <[email protected]>
1 parent c9fa729 commit f7a5040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/composer-runtime/lib/context.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class Context {
129129
this.container = options.container;
130130

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

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

0 commit comments

Comments
 (0)