Skip to content

Commit

Permalink
Removed useless default null values for env method (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheipashkevich authored Aug 28, 2024
1 parent ed51bc4 commit 1fac82f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/pulse.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'driver' => env('PULSE_STORAGE_DRIVER', 'database'),

'database' => [
'connection' => env('PULSE_DB_CONNECTION', null),
'connection' => env('PULSE_DB_CONNECTION'),
'chunk' => 1000,
],
],
Expand Down Expand Up @@ -195,7 +195,7 @@
'sample_rate' => env('PULSE_SLOW_QUERIES_SAMPLE_RATE', 1),
'threshold' => env('PULSE_SLOW_QUERIES_THRESHOLD', 1000),
'location' => env('PULSE_SLOW_QUERIES_LOCATION', true),
'max_query_length' => env('PULSE_SLOW_QUERIES_MAX_QUERY_LENGTH', null),
'max_query_length' => env('PULSE_SLOW_QUERIES_MAX_QUERY_LENGTH'),
'ignore' => [
'/(["`])pulse_[\w]+?\1/', // Pulse tables...
'/(["`])telescope_[\w]+?\1/', // Telescope tables...
Expand Down

0 comments on commit 1fac82f

Please sign in to comment.