Xuanwo commented on issue #2199:
URL: 
https://github.com/apache/incubator-opendal/issues/2199#issuecomment-1532463707

   > Also, I found that many tests require `read_with_range` capabilities, but 
the Supabase seems do not support the http RANGE header.
   
   Supabase seems handled `range` header already:
   
   
https://github.com/supabase/storage-api/blob/1794d04ab0e7259d9058293e257f442015252ec3/src/storage/renderer/asset.ts#L14-L20
   
   ```rust
     getAsset(request: FastifyRequest, options: RenderOptions) {
       return this.backend.getObject(options.bucket, options.key, 
options.version, {
         ifModifiedSince: request.headers['if-modified-since'],
         ifNoneMatch: request.headers['if-none-match'],
         range: request.headers.range,
       })
     }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to