File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Yii2 Queue Extension Change Log
4
4
2.3.6 under development
5
5
-----------------------
6
6
7
- - no changes in this release.
7
+ - Enh # 372 : Add ability to configure keepalive and heartbeat for AMQP and AMQP interop (vyachin)
8
8
9
9
10
10
2.3.5 November 18, 2022
@@ -41,7 +41,6 @@ Yii2 Queue Extension Change Log
41
41
2.3.1 December 23, 2020
42
42
-----------------------
43
43
44
- - Enh #372 : Add ability to configure keepalive and heartbeat for Amqp (vyachin)
45
44
- Bug #380 : Fixed amqp-interop queue/listen signal handling (tarinu)
46
45
- Enh #388 : ` symfony/process 5.0 ` compatibility (leandrogehlen)
47
46
Original file line number Diff line number Diff line change 23
23
"require-dev" : {
24
24
"yiisoft/yii2-redis" : " *" ,
25
25
"php-amqplib/php-amqplib" : " *" ,
26
- "enqueue/amqp-lib" : " ^0.8" ,
26
+ "enqueue/amqp-lib" : " ^0.8||^0.9.10 " ,
27
27
"pda/pheanstalk" : " v3.*" ,
28
28
"opis/closure" : " *" ,
29
29
"yiisoft/yii2-debug" : " *" ,
Original file line number Diff line number Diff line change @@ -37,8 +37,9 @@ class Queue extends CliQueue
37
37
*/
38
38
public $ heartbeat = 0 ;
39
39
/**
40
- * @var bool send keep-alive packets for a socket connection
41
- * @since 2.3.1
40
+ * Send keep-alive packets for a socket connection
41
+ * @var bool
42
+ * @since 2.3.6
42
43
*/
43
44
public $ keepalive = false ;
44
45
/**
Original file line number Diff line number Diff line change @@ -109,9 +109,9 @@ class Queue extends CliQueue
109
109
*/
110
110
public $ persisted ;
111
111
/**
112
- *
113
- * @var bool send keep-alive packets for a socket connection
114
- * @since 2.3.1
112
+ * Send keep-alive packets for a socket connection
113
+ * @var bool
114
+ * @since 2.3.6
115
115
*/
116
116
public $ keepalive ;
117
117
/**
You can’t perform that action at this time.
0 commit comments