PushNotification icon indicating copy to clipboard operation
PushNotification copied to clipboard

Add timeouts to GCM/FCM services

Open dragermrb opened this issue 3 years ago • 0 comments

This PR add defatults timeouts to GCM and FCM services, like APN has.

Values:

  • connect_timeout: 15 seconds
  • timeout: 60 seconds

Sample:

$result = $this->client->post(
    $this->url,
    [
        'headers' => $headers,
        'json' => $fields,
        'connect_timeout' => 15,
        'timeout' => 60,
    ]
);

dragermrb avatar Jun 01 '21 07:06 dragermrb