mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Limit to 50.
This commit is contained in:
@@ -127,7 +127,7 @@ class SubmitTelemetryData implements ShouldQueue
|
||||
*/
|
||||
private function collectTelemetry(): Collection
|
||||
{
|
||||
$collection = Telemetry::whereNull('submitted')->get();
|
||||
$collection = Telemetry::whereNull('submitted')->take(50)->get();
|
||||
Log::debug(sprintf('Found %d entry(s) to submit', $collection->count()));
|
||||
|
||||
return $collection;
|
||||
|
Reference in New Issue
Block a user