Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelgj committed Jul 17, 2024
1 parent f1a1b64 commit 90cfedf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions js/core/src/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ export class Registry {

async lookupTraceStore(env: string): Promise<TraceStore | undefined> {
return (
(await this._lookupTraceStore(env)) || this.parent?.lookupTraceStore(env)
(await this.lookupOverlaidTraceStore(env)) ||
this.parent?.lookupTraceStore(env)
);
}

Expand Down Expand Up @@ -258,7 +259,7 @@ export class Registry {

async lookupFlowStateStore(env: string): Promise<FlowStateStore | undefined> {
return (
(await this._lookupFlowStateStore(env)) ||
(await this.lookupOverlaidFlowStateStore(env)) ||
this.parent?.lookupFlowStateStore(env)
);
}
Expand Down

0 comments on commit 90cfedf

Please sign in to comment.