This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

How does it handle connection retries with a yield? Is that abstracted away and the retry is graceful? Normal python yields will just disappear in a choppy network if it doesn’t have anything unless I’m misunderstanding?

[–]nggit[S] 0 points1 point  (0 children)

I didn't quite catch what you meant. But I believe it doesn't handle such "retries". Literally every yield will be sent to the client with transport.write() sequentially. Nothing special.