is it a different story using the new python workers?
is it a different story using the new python workers?
queue-name with event details, but not anymore or it's just me ?queue() function, but nothing appear in real time logs when I add the message in queue via dashboard as well via API. While it was showing logs few weeks ago.


We also offer CN2 GIA/CTGNet services in Hong Kong and Japan. Note that Hong Kong and Japan based CN2 GIA VPS plans are going to cost much more. If latency is not an issue, consider using Los Angeles (eCommerce plans, link above).


queue-nameasync queue(batch: MessageBatch<Message>, env: Bindings): Promise<void> {
try {
console.log("messages", JSON.stringify(batch.messages));
// some processing here
batch.ackAll();
} catch (err: any) {
console.error(
"Retry",
JSON.stringify({ message: err.message, stack: err.stack })
);
batch.retryAll({
delaySeconds: 5,
});
}
}