async upload remaining things
tzarebczan opened this issue · 2 comments
tzarebczan commented
- support stream update with and without a file
- better error handling for wasabi hiccups
Random error uploading image, worked on new upload right after.
sql: no rows in result set
infinite-persistence commented
sql: no rows in result set
- This should be due to my delay removal between the
tus
andnotify
stage.notify
will returnupload is still in process
sometimes even whentus
was completed on the app side.Will fixFixed on my end by checking the error and auto-retry later.
anbsky commented
notify will return upload is still in process sometimes even when tus was completed on the app side
This should be expected — we’re using networked storage and it can be quite some time between final chunk is posted and fully written and processed. A retry procedure would be my preferred approach as we really have no way of estimating the possible delay.
Regarding the no rows error, possibly the same story, a delay between the row is written and is available. I will add more details to the error message.