
queue method into my pages app and I can't put the producing code that execute sendBatch into the worker either. Is there no solution for this?Error: Queue send failed: Service Temporarily Unavailable ??

queuesendBatchError: Queue send failed: Service Temporarily UnavailableUnexpected fields found in queues.consumers[0] field: "services"async queue(batch: MessageBatch<TransactionModel>, env: Bindings): Promise<void> {
try {
let messages = JSON.stringify(batch.messages);
console.log(`consumed from our queue: ${JSON.stringify(messages)}`);
} catch (error) {
console.log('Error=>',error);
}
},type Bindings = {
AIS_ALL_TRANSACTIONS:KVNamespace
}
export default {
fetch: app.fetch,
async queue(batch: MessageBatch<TransactionModel>, env: Bindings): Promise<void> {
}}