address code review comments

Signed-off-by: Brian Fletcher <brian@roadie.io>
This commit is contained in:
Brian Fletcher
2023-03-08 15:58:40 +00:00
parent c251ef8007
commit a444c53a03
11 changed files with 51 additions and 35 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ You will need to add the following to the backend configuration `#makeCreateEnv`
```diff
// packages/backend/src/index.ts
+ const eventBroker = new InMemoryEventBroker(root.child({ type: 'plugin' }));
+ const eventBroker = new DefaultEventBroker(root.child({ type: 'plugin' }));
```
Then update plugin environment to include the event broker.