Well, no, changing to a new Queue did not solve it, still seeing: ``` "Queue sendBatch failed: Ser
Well, no, changing to a new Queue did not solve it, still seeing:
send(“foo”)

"Queue send failed: Service Temporarily Unavailable"3037173
Is there a way to use the existing worker to subscribe to 2 queues at the same time?
QUEUE.send() within a consumer, that it doesn't spawn a new worker within the same "thread" env.logger.info('Sending foo');
env.PROCESS_QUEUE.send('FOO')
.then(() => env.logger.info('sent foo'))
.catch((e) => env.logger.error('failed to send foo', e));QUEUE.send()[[queues.consumers]]
queue = "1"
max_batch_size = 100 # optional
max_batch_timeout = 30 # optional
[[queues.consumers]]
queue = "2"
max_batch_size = 100 # optional
max_batch_timeout = 30 # optionalexport default {
async queue(batch: MessageBatch<Error>, env: Environment): Promise<void> {
switch (batch.queue) {
case '1':
// handle queue 1
break;
case '2':
// handle queue 2
break;
}
},
};