Ron Frederick

Results 195 comments of Ron Frederick

Ok - I was able to reproduce this finally this morning. It doesn't happen on macOS or Windows, but I was able to get it to happen on Ubuntu, which...

You're absolutely right about the issue being with the reads returning out of order. That's in part probably related to the fact that the return values from wait() are both...

Ok - I have an initial cut at a fix: ```patch diff --git a/asyncssh/sftp.py b/asyncssh/sftp.py index f7befde..5cc8498 100644 --- a/asyncssh/sftp.py +++ b/asyncssh/sftp.py @@ -733,7 +733,7 @@ class _SFTPFileWriter(_SFTPParallelIO[int]): async for...

Thanks for the report and your help on this! The code above is now checked into the "develop" branch as commit ee1baff.

The specific error "Missing file segements in upload:0" is not something being generated by AsyncSSH. It must be coming from the server. What server are you uploading this data to?...

No problem - since your original report, I've gotten a second one which looks similar (#510). Which OS are you running this on, and are you doing anything beyond starting...

Yeah - while this seems to be a server issue with not supporting random access file I/O, I should be able to get things working again as well as they...

Thanks again for reporting this! A fix for this is now checked into the "develop" branch as commit ee1baff.

That's great, Patrik - thanks for letting me know! This change will be included in the next release...

Yes - that looks right. Both the code and the documentation agree that the process_factory argument can be either a callable or a coroutine, so the MaybeAwait is appropriate there,...