Patch Changes
-
77df48f: Short-circuit keep-active pings in the shipped Lambda handlers so they no longer trigger a spurious SvelteKit render.
The
SvelteKitconstruct already tags its handler for warming viaLambdaKeepActive, but the node and bun handler templates passed the keep-active ping event straight intoawsRequest/server.respond, rendering a garbage request on every warm invocation.- Wrap the node handler with
keptActiveat the event level. - Wrap the bun handler with
keptActivearoundasHttpV2Handler, since the ping arrives as a raw Lambda event rather than as an HTTP request. - Add handler tests asserting a keep-active ping short-circuits without calling
server.respond.
- Wrap the node handler with