Claims do not support INCR, leading to breakage with large data #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Large files (such as images) can cause horrific breakage. More investigation is required.
This seems to be because, while we support receiving incremental data, we do not support sending it. If there is a lot of data, we set all of it on a window property at once, which is obviously very bad. There is literally an io.ReadAll call. Horrid. This tracks with the fact that the issue has only been observed with selection claims. The solution to this issue is therefore to support sending large data incrementally.
Seems to break with large datato Claims do not support INCR, leading to breakage with large dataThis cannot be implemented without breaking API changes (need another event handler). Additionally, NewClaim, NewRequest do not return an error when they really should. It looks like its time for a v2. Sad that I couldn't make a decent API from the start, but whatever.