How long have you been using Queues? Trying to understand if you just set it up and saw this, or if
How long have you been using Queues? Trying to understand if you just set it up and saw this, or if you saw this after using Queues for some time.


I am being killed after 32,000ms. Is this a bug in the new billing?



queue function in your default exportQueue schedule-retrieval (7 messages) - Exceeded CPU Limit @ 12/2/2023, 12:03:45 PMTotal Upload: 1810.83 KiB / gzip: 347.18 KiB
Uploaded dev-api-internal (2.44 sec)
✘ [ERROR] A request to the Cloudflare API (/accounts/2c/workers/queues/dev-queue/consumers/api-backend) failed.
workers.api.error.queue_handler_missing [code: 11001]export default {
fetch(request: Request, env: Env, ctx: ExecutionContext) {
// Set env variables
Object.keys(env).forEach((variable) => {
process.env[variable] ??= `${env[variable]}`;
})
return fetch(request, env, ctx)
},
async queue(batch: MessageBatch<any>, env: Env): Promise<void> {
let messages = JSON.stringify(batch.messages);
console.log(`consumed from our queue: ${messages}`);
},
}