If I create an endless loop on my `getSomeStuff` ...
# help
d
If I create an endless loop on my
getSomeStuff
endpoint
Copy code
do {
  result = dynamodb.query(paramn)
} while (true)
while running on sst localhost. and then I just
cmd + c
from that terminal. Does it kill the loop or do I need to go see the console.
a
when running locally, the node process uses your system to execute lambda code, so terminating the process should terminate the loop.
d
Huzzah. Thanks 🙏