This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author unixjon
Recipients Grégoire Chauvet, Matthieu Pepin, christian.heimes, corona10, jonathan-lp, paul.moore, paulw11, realnehareddy, steve.dower, tim.golden, unixjon, zach.ware
Date 2020-03-12.17:43:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1584035027.31.0.421956237531.issue31727@roundup.psfhosted.org>
In-reply-to
Content
I had the same problem but when i was trying to upload the files using FTPS with explicit TLS 1.2 over an AWS Lambda function.
Each time that i was trying upload a file, there was an lambda timeout on the storbinary called, and the function ended whit error on each execution.
Finally the only solution that i founded, to solve this issue, was:

1- It using a threading to do the storebinary process.
2- Put an sleep depending do File size.
3- After the sleep function, it using ftplib.dir.
History
Date User Action Args
2020-03-12 17:43:47unixjonsetrecipients: + unixjon, paul.moore, christian.heimes, tim.golden, zach.ware, steve.dower, Matthieu Pepin, corona10, jonathan-lp, Grégoire Chauvet, paulw11, realnehareddy
2020-03-12 17:43:47unixjonsetmessageid: <1584035027.31.0.421956237531.issue31727@roundup.psfhosted.org>
2020-03-12 17:43:47unixjonlinkissue31727 messages
2020-03-12 17:43:47unixjoncreate