algolia / algoliasearch-client-dart

⚡️ A fully-featured and blazing-fast Dart/Flutter API client to interact with Algolia
MIT License
12 stars 7 forks source link

Increase Timeout Duration #11

Open ebsangam opened 5 months ago

ebsangam commented 5 months ago

Client has only 2 sec of timeout duration and it cause timeout exception we may need longer timeout duration. image

techouse commented 4 months ago

You can configure this already

final SearchClient _client = SearchClient(
  // ...
  options: ClientOptions(
    connectTimeout: const Duration(seconds: 30),
  ),
);