I was kidnapped by my runaway electric car
bbc.co.uk42 pointsby CraigJPerry59 comments
asyncio.run(f(), debug=True) # find some more issues before prod queue = asyncio.Queue() # oops
unbounded concurrency await asyncio.gather(*(fetch(item) for item in items)) # look mum! no outbound sockets left or maybe even no file descriptors
accidental blocking data = requests.get(url).json() # oops! we're blocking the event loop
and sure you can setup a separate task to measure the event loop latency and alert on that but this is the kinda thing you'll never find in a tutorial, you just need to experience this stuff and figure out a solution you like > Diffs per engineer*
>
> * Not at individual level
Are you guys agreeing or disagreeing with each other?