generally it's because you're leaking promises/async stuff across requests in the global scope > "Th

generally it's because you're leaking promises/async stuff across requests in the global scope
"The script will never generate a response" happens when the runtime sees that it has finished executing all the JavaScript microtasks for a particular request, and no I/O operations have been scheduled
can be caused by a library you are using as well, there's a few that could cause it that are known issues, as well as just any that assumes globals are fine/persisting promises, which is ok in most other environments
Was this page helpful?