Skip to content

Not getting proper error message from PostgrestBuilder #1658

@junedkhatri31

Description

@junedkhatri31

Bug report

  • [✓] I confirm this is a bug with Supabase, not with my own application.
  • [✓] I confirm I have searched the Docs, GitHub Discussions, and Discord.

Describe the bug

When fetch function inside PostgrestBuilder fails. The error does not contain proper information why the fetch failed.

To Reproduce

Steps to reproduce the behavior, please provide code snippets or a repository:

  1. Put postgrest server behind self signed certificate
  2. Run database query
    const { data: somedata, error } = supabase
        .from('sometable')
        .select('*')
        .order('somecolumn', { ascending: false })
    
  3. Getting error message like the below
    Screenshot 2023-10-21 at 22 58 43
  4. It is not very clear what the error is

Expected behavior

The error should contain clear information that the error is we are not able to verify certificate

Screenshots

If applicable, add screenshots to help explain your problem.

System information

  • OS: macOS
  • Browser (if applies): NextJS server component
  • Version of supabase-js: 2.25.0
  • Version of Node.js: 18.18.2

Additional context

After spending 2 hours digging through internal library I found out that the error is self signed certificate is not being verified properly (Self signed cert is added properly in container's /etc/ssl/certs/ca-certificates.crt path. That is also an issue but I will deal with it separately.)

The point is I found where exactly the problem is. It is in src/PostgrestBuilder.ts inside then function. res object's error contains another error named cause that contains more information about the error. Which is getting lost. Because it is not getting assigned in new error object.
Screenshot 2023-10-21 at 23 05 20

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingpostgrest-jsRelated to the postgrest-js library.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions