Michael Willis
Michael Willis
@alfonso73 Please try the new [Release 3.2.8](https://github.com/michaelwillis/dragonfly-reverb/releases/tag/3.2.8).
@Arkforest Thanks for reporting this, I was able to reproduce it on my computer. I'll see what I can do about a fix, but for now just avoid those settings.
Yes, I read the warning and tried to follow it. Here is my code, which is working now that it calls `stream.close()` and `await client.abort()` in reverse order from that...
Hmm, I rewrote the code as follows and it gives me almost no problems: ``` try: async with aioftp.Client.context(HOST, user=USER, password=PASSWORD) as client: async with client.download_stream(filename) as stream: await stream_process_lines(stream)...