Does anyone know how long a limits increase takes? I requested one a couple of weeks back but haven'
Does anyone know how long a limits increase takes? I requested one a couple of weeks back but haven't heard anything 

use env.[namespace_name].put(...)ReferenceError: env is not definedenv is not a global variable - you likely have to pass it into your function as an argument. In the workers example code you have request, env, ctx as arguments for the fetch handler:WNAM, so the worker should be placed there too, but it is placed locally instead. I guess that's a beta product issue (smart placement)... but just FYI.


discord.com A @9.9.9.9 +noall +answer +shortdiggy diggy hole
β’9/2/24, 6:32 PM
use env.[namespace_name].put(...)ReferenceError: env is not definedenvrequest, env, ctxWNAMdiscord.com A @9.9.9.9 +noall +answer +short162.159.138.232
162.159.128.233
162.159.137.232
162.159.135.232
162.159.136.232export default {
// The fetch handler is invoked when this worker receives a HTTP(S) request
// and should return a Response (optionally wrapped in a Promise)
async fetch(request, env, ctx) {
//...
yourFunction(env);
}
}