Was doing some load tests and noticed that if I start a bunch of workflows quickly the dashboard kin
Was doing some load tests and noticed that if I start a bunch of workflows quickly the dashboard kinda becomes really slow 

await step.sleep('wait on something', '1 second') but here it says the wall time for this step is 254ms .. any idea why it's lower than what the wall time should be?
wait on something (Sleep)Serialized RPC arguments or return values are limited to 1MiB which I think happens when the returned values of a step are larger than 1MiB.Trigger Button to trigger a workflow, the Params are submitted with some extra characters 
JSON.parse() on the params firstTrigger button doing the stringify, or if wrangler not stringifying would count as a bug here

wrangler dev)? (See https://developers.cloudflare.com/workflows/build/workers-api/#cross-script-calls)Worker "workflows:test-item-workflow"'s binding "USER_WORKFLOW" refers to a service "core:user:my-app-workflows", but no such service is defined., even though I am setting the name of the other worker with wrangler dev --name my-app-workflowsawait step.sleep('wait on something', '1 second')254mswait on something (Sleep)Serialized RPC arguments or return values are limited to 1MiBTriggerTriggerParamsnpx wrangler workflows trigger create-campaign-from-url-workflow --params='{"url":"https://www.backlinkgpt.com"}'JSON.parse()wrangler devWorker "workflows:test-item-workflow"'s binding "USER_WORKFLOW" refers to a service "core:user:my-app-workflows", but no such service is defined.wrangler dev --name my-app-workflowsctx.serviceSendClient(MyService).myHandler(payload, { delay: 5000 });[[workflows]]
name = "test-item-workflow"
binding = "MY_WORKFLOW"
class_name = "TestItemWorkflow"
# THIS >>>>>>
script_name = "my-app-workflows"