File tree Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Expand file tree Collapse file tree 5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ class CommentHasReplyNotification extends Notification implements ShouldQueue
13
13
{
14
14
use Queueable;
15
15
16
+ public $ tries = 5 ;
17
+
18
+ public $ backoff = 10 ;
19
+
16
20
public function __construct (
17
21
public readonly Comment $ comment
18
22
) {
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ class ItemHasNewCommentNotification extends Notification implements ShouldQueue
14
14
{
15
15
use Queueable;
16
16
17
+ public $ tries = 5 ;
18
+
19
+ public $ backoff = 10 ;
20
+
17
21
public function __construct (
18
22
public readonly Comment $ comment ,
19
23
public readonly User $ user
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ class ItemUpdatedNotification extends Notification implements ShouldQueue
14
14
{
15
15
use Queueable;
16
16
17
+ public $ tries = 5 ;
18
+
19
+ public $ backoff = 10 ;
20
+
17
21
public function __construct (
18
22
public readonly Item $ item
19
23
) {
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ class MentionNotification extends Notification implements ShouldQueue
13
13
{
14
14
use Queueable;
15
15
16
+ public $ tries = 5 ;
17
+
18
+ public $ backoff = 10 ;
19
+
16
20
public function __construct (
17
21
public readonly Comment $ comment
18
22
) {
Original file line number Diff line number Diff line change 58
58
59
59
'postmark ' => [
60
60
'transport ' => 'postmark ' ,
61
- // 'client' => [
62
- // 'timeout ' => 5 ,
63
- // ],
61
+ 'client ' => [
62
+ ' http_version ' => ' 1.1 ' ,
63
+ ]
64
64
],
65
65
66
66
'sendmail ' => [
You can’t perform that action at this time.
0 commit comments