Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Jun 19, 2024
1 parent c0fb8c8 commit 6a59dcf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin-server/src/main/pluginsServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export async function startPluginsServer(
})

startCapabilities('cdpProcessedEvents', async () => {
const consumer = new CdpProcessedEventsConsumer(serverConfig, hub)
const consumer = new CdpProcessedEventsConsumer(hub)
await consumer.start()

shutdownOnConsumerExit(consumer.batchConsumer!)
Expand All @@ -435,7 +435,7 @@ export async function startPluginsServer(
})

startCapabilities('cdpFunctionCallbacks', async () => {
const consumer = new CdpFunctionCallbackConsumer(serverConfig, hub)
const consumer = new CdpFunctionCallbackConsumer(hub)
await consumer.start()

shutdownOnConsumerExit(consumer.batchConsumer!)
Expand Down

0 comments on commit 6a59dcf

Please sign in to comment.