From a0ef1e7a202ad37c5aac63106f2b34757a66b0e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Veloso=20Soares?= Date: Wed, 19 Feb 2025 19:52:33 -0800 Subject: [PATCH 1/3] Fix SQS driver type error with custom value passed to queue/listen --- src/drivers/sqs/Command.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/drivers/sqs/Command.php b/src/drivers/sqs/Command.php index 15474915b..d2b5e288b 100644 --- a/src/drivers/sqs/Command.php +++ b/src/drivers/sqs/Command.php @@ -48,6 +48,8 @@ public function actionListen($timeout = 3) if (!is_numeric($timeout)) { throw new Exception('Timeout must be numeric.'); } + $timeout = (int) $timeout; + if ($timeout < 1 || $timeout > 20) { throw new Exception('Timeout must be between 1 and 20'); } From 94f42451a70dacee253cb235d506f541f8ff6d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Veloso=20Soares?= Date: Thu, 20 Feb 2025 15:53:51 -0800 Subject: [PATCH 2/3] Add changelog entry --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7a0dd170..2a07208a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Yii2 Queue Extension Change Log 2.3.8 under development ----------------------- -- no changes in this release. +- Bug #523: Fix SQS driver type error with custom value passed to `queue/listen` (flaviovs) 2.3.7 April 29, 2024 From caf0930b12d43a70034b860a8a5016ca32fc1991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Veloso=20Soares?= Date: Thu, 20 Feb 2025 15:54:52 -0800 Subject: [PATCH 3/3] Fix wrong issue # in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a07208a5..652cce681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Yii2 Queue Extension Change Log 2.3.8 under development ----------------------- -- Bug #523: Fix SQS driver type error with custom value passed to `queue/listen` (flaviovs) +- Bug #522: Fix SQS driver type error with custom value passed to `queue/listen` (flaviovs) 2.3.7 April 29, 2024