We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26a9da7 commit e411be2Copy full SHA for e411be2
src/Jobs/SendBeaconJob.php
@@ -22,8 +22,11 @@ public function handle(): void
22
return;
23
}
24
25
- $request = Http::asJson()->post('https://cachethq.io/beacon', [
+ $request = Http::asJson()
26
+ ->retry(3)
27
+ ->post('https://cachethq.io/beacon', [
28
'install_id' => app(AppSettings::class)->install_id,
29
+ 'php_version' => PHP_VERSION,
30
'version' => Cachet::version(),
31
'docker' => config('cachet.docker'),
32
'database' => config('database.default'),
0 commit comments