I have a DNS record that will not verify in my high level account, they said it was a cloud fare iss
I have a DNS record that will not verify in my high level account, they said it was a cloud fare issue

try{} handler or something and not handling the errors?

All assets on a zone can be purged by using the Purge Everything cache operation. This purge will remove all assets associated with a Cloudflare zone from cache in all data centers regardless of the method set.
To purge an asset globally, you must use the standard cache purge options. Based on cache API implementation, not all cache purge endpoints function for purging assets stored by the Cache API.https://developers.cloudflare.com/cache/how-to/purge-cache/
solved status for question in #workers-help ?{ fetch: Function } (which is what itty-router now looks like), and be done. No need for this bit at all:try{}Starting on September 23rd, 2024, when your compatibility date is on or after 2024-09-23, the nodejs_compat compatibility flag will enable the exact same behavior as nodejs_compat_v2.solved{ fetch: Function }trips.get('/', async (c) => {
const upgradeHeader = c.req.header('Upgrade');
if (!upgradeHeader || upgradeHeader !== 'websocket') {
return new Response('Expected Upgrade: websocket', { status: 426 });
}
const webSocketPair = new WebSocketPair();
const [client, server] = Object.values(webSocketPair);
server.accept();
server.addEventListener('message', event => {
console.log(event.data);
});
run(); //issues occur in this function
return new Response(null, {
status: 101,
webSocket: client,
});
});(async () => {
try {
await run(trip, engineConfig); //the method will return 101, but run() will continue
} catch (err) {
console.error('Error in run function:', err);
}
})();addEventListener('fetch', (event) => {
event.respondWith(router.handle(event.request))
});