We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently write file data and upload in the same thread as the one the bot logic is running in.
I think we can write the file data in the same thread but uploading the file data needs to happen in a separate thread.
Files that upload successfully should be deleted from the local disk.
The text was updated successfully, but these errors were encountered:
Due to GIL (global interpreter lock), there is a good chance the file upload will need to be a separate process/script.
Sorry, something went wrong.
spawning a process to handle this should be fairly easy. Maybe we make the server converter internally maintain its own process?
Sciguymjm
dtracers
No branches or pull requests
We currently write file data and upload in the same thread as the one the bot logic is running in.
I think we can write the file data in the same thread but uploading the file data needs to happen in a separate thread.
Files that upload successfully should be deleted from the local disk.
The text was updated successfully, but these errors were encountered: