supabase / supabase-flutter

Flutter integration for Supabase. This package makes it simple for developers to build secure and scalable products.
https://supabase.com/
MIT License
661 stars 154 forks source link

Titmeout error #858

Closed andim27 closed 3 months ago

andim27 commented 3 months ago

supabase_flutter: ^2.3.4 I do next code:

try {
final data = await sbClient
          .from("my_table")
          .select...
} catch (e) {
print(e)
}

But sometimes I've got error: ClientException with SocketException: Connection timed out (OS Error: Connection timed out, errno = 110), address = *** Question: -what is it?

dshukertjr commented 3 months ago

The error indicates that you likely do not have internet connections. https://stackoverflow.com/questions/60155822/i-flutter-30720-socketexception-os-error-connection-timed-out-errno-110

andim27 commented 3 months ago

Is a method in flutter_supabase to verify Supabase server status ?

dshukertjr commented 3 months ago

@andim27 No, there isn't.