Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fix plugin child process loading issue (#8701)
Browse files Browse the repository at this point in the history
Co-authored-by: !shan <ishantiw.quasar@gmail.com>
  • Loading branch information
mosmartin and ishantiw committed Jul 7, 2023
1 parent 0234215 commit 4d4f362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/src/controller/channels/ipc_channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class IPCChannel extends BaseChannel {
await this.startAndListen();
// Register channel details
let endpointInfo: { [key: string]: EndpointInfo } = {};
endpointInfo = Object.keys(this.endpointHandlers).reduce((accumulator, value: string) => {
endpointInfo = Array.from(this.endpointHandlers.keys()).reduce((accumulator, value: string) => {
accumulator[value] = {
method: value,
namespace: this.namespace,
Expand Down

0 comments on commit 4d4f362

Please sign in to comment.