uhm is it normal that .dev.vars are inside your server bundle? :AL_yEthinkHmm:
uhm is it normal that .dev.vars are inside your server bundle? :AL_yEthinkHmm:

example.com/cdn-cgi/trace on your tunnel hostname) and in your tunnel logs, that your tunnel is connecting to a nearby location as well, not too related to Workers thoughctx.waitUntil() can have a longer execution time too. Its been 30s of wall-clock duration, and I could really use an increase time limit there.const start = performance.now()
await fetch('https://unweb.io/healthcheck').then(x => x.text())
return new Response(String(performance.now() - start));Simultaneous open connections
You can open up to six connections simultaneously, for each invocation of your Worker. The connections opened by the following API calls all count toward this limit:
- the fetch() method of the Fetch API.const results = await Promise.all([
fetch(url1),
fetch(url2),
fetch(url3),
fetch(url4),
fetch(url5),
fetch(url6),
fetch(url7), // Exceeds the limit of 6
]);