PipeDream Internal Error & Out of memory error

hello gang!
I’ve completed the first QuickStart exercise and right before I start the next schedule workflow exercise and I get Pipedream Internal error and the Out of memory errors I’ve pasted the link to the workflow in question. https://pipedream.com/@coreyhubbard/http-quickstart-p_aNCqpJ7

I know you all are busy and I apologize for this interruption.

@coreyhubbard would you mind clicking the Share button at the top-right of your workflow and share it with dylan@pipedream.com? I’d like to take a look at those specific executions.

cool… I am sharing now!

Out of curiosity, if you double your workflow’s memory in its Settings tab, and try invoking the workflow again, does that work?

Taking a look at the error in more detail now.

Take a look at the most recent execution. I modified the final step to:

await $respond({
  status: 200,
  immediate: true,
  body: steps.transform.$return_value
})

It was previously:

await $respond({
  status: 200,
  immediate: true,
  body: await $respond({
  status: 200,
  immediate: true,
  body: steps.transform.$return_value
})
})

it looks like you may have copied-and-pasted the example code into that cell twice, and it was triggering an internal error in the code we use to run your workflow.

oh nice… wow… I see and thanks a trillion!