Packages info:
laravel/framework v5.7.19
sentry/sentry 2.0.0-beta1
sentry/sentry-laravel 1.0.0-beta2
php-http/client-common 1.9.0
and I get this error:
[Fri Jan 18 14:39:18 2019] PHP Fatal error: Maximum execution time of 30 seconds exceeded in
C:\Users\yoyosan\Work\abonati\vendor\php-http\client-common\src\Plugin\RetryPlugin.php on line 121
I've tried :
php artisan sentry:test
[sentry] Client DSN discovered!
[sentry] Generating test event
[sentry] Sending test event
[sentry] Event sent: blablablabla
Nothing is sent.
/cc @HazAT @Jean85 @ste93cry
Can you try setting the send_attempts configuration option to something lower than the default value (which btw is too much high and we should change it)? I don't know why but I believe that for some reason you get an error and Httplug tries to send the event again and again up to the specified amount of times, however the PHP timeout comes first

Increased to 20(as you can see above) and I get the same error. There's no error in my laravel app logs.
I found the problem.
The following error is thrown: [object] (Http\\Client\\Exception\\RequestException(code: 0): cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
That's because I'm using Windows and cli php to develop, therefore I had to:
php.ini, curl.cainfo = "C:\path\to\cacert.pem"I would suggest to use https://github.com/paragonie/certainty in similar cases.
Most helpful comment
I would suggest to use https://github.com/paragonie/certainty in similar cases.