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
Currently the transform stream reads the file streams in a loop while(true), and pipes the data to the transform stream controller as an output. There are two issues:
If a file stream was aborted the error is thrown, but the transform stream doesn't get canceled.
If the transform stream stream writer gets aborted, the cancelation does not get piped through to another stream.
The text was updated successfully, but these errors were encountered:
Would really like to have this. I upload zip files to and when the request files there is no way to signal to the zip transformer to stop. It just throws an error somewhere where I can't catch it.
Currently the transform stream reads the file streams in a loop
while(true)
, and pipes the data to the transform stream controller as an output. There are two issues:The text was updated successfully, but these errors were encountered: