diff --git a/app/Notifications/Application/DeploymentFailed.php b/app/Notifications/Application/DeploymentFailed.php index ddbdf1446..ea9e05652 100644 --- a/app/Notifications/Application/DeploymentFailed.php +++ b/app/Notifications/Application/DeploymentFailed.php @@ -16,6 +16,7 @@ class DeploymentFailed extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public Application $application; public string $deployment_uuid; public ?ApplicationPreview $preview = null; diff --git a/app/Notifications/Application/DeploymentSuccess.php b/app/Notifications/Application/DeploymentSuccess.php index f46c44c0e..0705e11ae 100644 --- a/app/Notifications/Application/DeploymentSuccess.php +++ b/app/Notifications/Application/DeploymentSuccess.php @@ -16,6 +16,7 @@ class DeploymentSuccess extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public Application $application; public string $deployment_uuid; public ApplicationPreview|null $preview = null; diff --git a/app/Notifications/Application/StatusChanged.php b/app/Notifications/Application/StatusChanged.php index 0d01d08ab..11bd9f524 100644 --- a/app/Notifications/Application/StatusChanged.php +++ b/app/Notifications/Application/StatusChanged.php @@ -14,6 +14,7 @@ class StatusChanged extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public $application; public string $application_name; diff --git a/app/Notifications/Database/BackupFailed.php b/app/Notifications/Database/BackupFailed.php index 613b0846c..960232f9c 100644 --- a/app/Notifications/Database/BackupFailed.php +++ b/app/Notifications/Database/BackupFailed.php @@ -14,6 +14,7 @@ class BackupFailed extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public string $name; public string $frequency; diff --git a/app/Notifications/Database/BackupSuccess.php b/app/Notifications/Database/BackupSuccess.php index eb6d07c25..bac96ae35 100644 --- a/app/Notifications/Database/BackupSuccess.php +++ b/app/Notifications/Database/BackupSuccess.php @@ -14,6 +14,7 @@ class BackupSuccess extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public string $name; public string $frequency; diff --git a/app/Notifications/Internal/GeneralNotification.php b/app/Notifications/Internal/GeneralNotification.php index 78a76c059..024175622 100644 --- a/app/Notifications/Internal/GeneralNotification.php +++ b/app/Notifications/Internal/GeneralNotification.php @@ -12,6 +12,7 @@ class GeneralNotification extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public function __construct(public string $message) { } diff --git a/app/Notifications/Server/NotReachable.php b/app/Notifications/Server/NotReachable.php index 083808224..672636c57 100644 --- a/app/Notifications/Server/NotReachable.php +++ b/app/Notifications/Server/NotReachable.php @@ -15,6 +15,7 @@ class NotReachable extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public function __construct(public Server $server) { diff --git a/app/Notifications/Test.php b/app/Notifications/Test.php index 0b47d74b2..fbbd7a1fb 100644 --- a/app/Notifications/Test.php +++ b/app/Notifications/Test.php @@ -14,6 +14,7 @@ class Test extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public function __construct(public string|null $emails = null) { } diff --git a/app/Notifications/TransactionalEmails/InvitationLink.php b/app/Notifications/TransactionalEmails/InvitationLink.php index 96157c7e6..ab7cfb122 100644 --- a/app/Notifications/TransactionalEmails/InvitationLink.php +++ b/app/Notifications/TransactionalEmails/InvitationLink.php @@ -15,6 +15,7 @@ class InvitationLink extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public function via(): array { return [TransactionalEmailChannel::class]; diff --git a/app/Notifications/TransactionalEmails/Test.php b/app/Notifications/TransactionalEmails/Test.php index 3f3a009bb..21cf87470 100644 --- a/app/Notifications/TransactionalEmails/Test.php +++ b/app/Notifications/TransactionalEmails/Test.php @@ -12,6 +12,7 @@ class Test extends Notification implements ShouldQueue { use Queueable; + public $tries = 5; public function __construct(public string $emails) { }