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
Replayweb.page does a HEAD request when it opens a WACZ file. If the HEAD request fails it will do a GET request with range 0-, thus requesting all bytes.
We would like it to retry first with a GET request with range 0-0.
The reason for this is that we would like to enable caching on AWS CloudFront and have WACZ files larger than 30GB. A HEAD request and a GET request for all bytes for these files will fail, but a GET range request for some bytes will succeed.
The text was updated successfully, but these errors were encountered:
Replayweb.page does a HEAD request when it opens a WACZ file. If the HEAD request fails it will do a GET request with range 0-, thus requesting all bytes.
We would like it to retry first with a GET request with range 0-0.
The reason for this is that we would like to enable caching on AWS CloudFront and have WACZ files larger than 30GB. A HEAD request and a GET request for all bytes for these files will fail, but a GET range request for some bytes will succeed.
The text was updated successfully, but these errors were encountered: