Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Sep 4, 2024
1 parent 456de20 commit 97bb0d2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions plugin-server/src/cdp/cdp-consumers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ abstract class CdpConsumerBase {
await runInstrumentedFunction({
statsKey: `cdpConsumer.handleEachBatch.produceResults`,
func: async () => {
console.log('Processing invocations results', results.length)

await Promise.all(
results.map(async (result) => {
// Tricky: We want to pull all the logs out as we don't want them to be passed around to any subsequent functions
Expand Down Expand Up @@ -635,12 +633,6 @@ export class CdpFunctionCallbackConsumer extends CdpConsumerBase {
})
)

invocations.forEach((item) => {
if (!item.hogFunction?.id) {
console.error('No hog function id', item)
}
})

return invocations
},
})
Expand Down

0 comments on commit 97bb0d2

Please sign in to comment.