From 8270c221ac1cb78eed00b6e2721eb891c2c660b0 Mon Sep 17 00:00:00 2001 From: Alex Bouma Date: Fri, 1 Feb 2019 11:25:04 +0100 Subject: [PATCH] Lower the default send_attempts option to 3 --- src/Options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options.php b/src/Options.php index 03042478f..949b5db47 100644 --- a/src/Options.php +++ b/src/Options.php @@ -632,7 +632,7 @@ private function configureOptions(OptionsResolver $resolver): void $resolver->setDefaults([ 'integrations' => [], 'default_integrations' => true, - 'send_attempts' => 6, + 'send_attempts' => 3, 'prefixes' => explode(PATH_SEPARATOR, get_include_path()), 'sample_rate' => 1, 'attach_stacktrace' => false,