-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
servcices/supabase: Tracking issues of not fixed issues at storage-api side #2199
Comments
Please assign this to me, it is almost done xD |
Also, I found that many tests require Is it reasonable to add if !op.info().capability().read_with_range {
return Ok(());
} to tests that call into the |
Supabase seems handled 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,
})
} |
Supabase has two different storage backend, s3 supports range, but file not. It's another issue from supabase storage side 🤣
|
Yes, we should ignore tests for services that doesn't support range. Please make sure all services have this capability been set correctly. |
Of course. I will patch that alongside my Supabase CI fix. |
What do you think, should we raise an issue there? 🤣 |
Yes, please raise an issue to supbase storage-api and link here. We can add |
This comment was marked as resolved.
This comment was marked as resolved.
Thanks to @Ji-Xinyou, most work at opendal side is done! |
We are going to remove supabase support, let's close. |
Visit #2190 for more context.
This issue has been converted as a tracking issue of not fixed issues at storage-api side:
We are keeping this issue to ensure that we have a valid context for contacting the Supabase development team.
The text was updated successfully, but these errors were encountered: