Skip to content

Commit

Permalink
fix: await configure provider handler call
Browse files Browse the repository at this point in the history
  • Loading branch information
Orzelius committed Jun 5, 2023
1 parent f1a86aa commit 2de39a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/router/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class ProviderRouter extends BaseRouter {
base: this.wrapBase(handler!.base),
}

const result = (<Function>handler)(handlerParams)
const result = await (<Function>handler)(handlerParams)

this.garden.log.silly(`Called 'configureProvider' handler on '${pluginName}'`)

Expand Down

0 comments on commit 2de39a0

Please sign in to comment.