OdyseeTeam/odysee-api

async upload remaining things

tzarebczan opened this issue · 2 comments

  • 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

sql: no rows in result set

  • This should be due to my delay removal between the tus and notify stage.
    • notify will return upload is still in process sometimes even when tus was completed on the app side.
    • Will fix Fixed on my end by checking the error and auto-retry later.

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.