You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, literally the entire file is sent all at once when you print a file. This isn't ideal, since if you, for example, request a JSON-RPC method while it's sending, it will corrupt the file. We should split the file into chunks and send multiple put_raw requests to prevent corruption.
Additionally, it might also be a good idea to prevent requests from sending while the file is sending (could queue them up, I guess).
The text was updated successfully, but these errors were encountered:
Right now, literally the entire file is sent all at once when you print a file. This isn't ideal, since if you, for example, request a JSON-RPC method while it's sending, it will corrupt the file. We should split the file into chunks and send multiple
put_raw
requests to prevent corruption.Additionally, it might also be a good idea to prevent requests from sending while the file is sending (could queue them up, I guess).
The text was updated successfully, but these errors were encountered: