[PR #22] [MERGED] [issue #17] fix retry and faillure queue #21

Closed
opened 2026-01-27 12:39:05 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/win32service/Win32ServiceBundle/pull/22
Author: @jbcr
Created: 10/23/2024
Status: Merged
Merged: 10/23/2024
Merged by: @macintoshplus

Base: 2.xHead: issue_17_failed_message_never_retried_suite


📝 Commits (10+)

📊 Changes

31 files changed (+1192 additions, -5 deletions)

View changed files

.github/workflows/quality.yaml (+68 -0)
📝 composer.json (+3 -1)
📝 lib/DependencyInjection/MessengerPass.php (+41 -0)
lib/Event/MessengerWorkerStoppedEvent.php (+22 -0)
lib/MessengerSubscriber/AddErrorDetailsStampListener.php (+31 -0)
lib/MessengerSubscriber/ResetServicesListener.php (+43 -0)
lib/MessengerSubscriber/SendFailedMessageForRetryListener.php (+163 -0)
lib/MessengerSubscriber/SendFailedMessageToFailureTransportListener.php (+70 -0)
📝 lib/Model/MessengerServiceRunner.php (+4 -1)
📝 lib/Resources/config/services.yaml (+21 -0)
📝 lib/Win32ServiceBundle.php (+1 -1)
phpunit.xml.dist (+25 -0)
tests/Application/.env.test (+2 -0)
📝 tests/Application/config/packages/messenger.yaml (+10 -1)
📝 tests/Application/config/packages/win32service.yaml (+2 -1)
tests/Application/src/Event/TestFailedMessage.php (+9 -0)
tests/Application/src/Event/TestMemoryLimitMessage.php (+12 -0)
tests/Application/src/Event/TestRetryMessage.php (+9 -0)
tests/Application/src/Event/TestTimeLimitMessage.php (+12 -0)
tests/Application/src/Handler/FailMessageHandler.php (+23 -0)

...and 11 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/win32service/Win32ServiceBundle/pull/22 **Author:** [@jbcr](https://github.com/jbcr) **Created:** 10/23/2024 **Status:** ✅ Merged **Merged:** 10/23/2024 **Merged by:** [@macintoshplus](https://github.com/macintoshplus) **Base:** `2.x` ← **Head:** `issue_17_failed_message_never_retried_suite` --- ### 📝 Commits (10+) - [`ccf379d`](https://github.com/win32service/Win32ServiceBundle/commit/ccf379dce798c339d4b922377b7a7588440cff64) issue #17 add code to retry and PHPUnit for tests - [`114c232`](https://github.com/win32service/Win32ServiceBundle/commit/114c232a253064c1e46065d9e867e890e061f30d) add branch for run action - [`5863dc5`](https://github.com/win32service/Win32ServiceBundle/commit/5863dc577c0b768cf25c3c149921a37d7f1de8d8) move workflow config - [`6599c30`](https://github.com/win32service/Win32ServiceBundle/commit/6599c306ae9cf89b79e79324d8036555dbf8dbb4) fix matrix config - [`551a352`](https://github.com/win32service/Win32ServiceBundle/commit/551a35255e803b421584019dba30518b0bd9d7b4) set PHP version as string instead of float - [`47b5590`](https://github.com/win32service/Win32ServiceBundle/commit/47b5590267f98b6cf8fcbb6e40c1f7202916e525) fix console path - [`9c940bc`](https://github.com/win32service/Win32ServiceBundle/commit/9c940bccaa704ffafdc9672a9397e01e8c6fbeff) fix database path - [`84ccbda`](https://github.com/win32service/Win32ServiceBundle/commit/84ccbda3441016f64a1492ecd258af4d5299da79) use mariadb - [`51b359d`](https://github.com/win32service/Win32ServiceBundle/commit/51b359dcf89cb40257d857f7a02040b3cd79f42d) fix env config - [`6b4086e`](https://github.com/win32service/Win32ServiceBundle/commit/6b4086e9279a3b197313ff6b35bf85477df5daf9) try fix mariadb port ### 📊 Changes **31 files changed** (+1192 additions, -5 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/quality.yaml` (+68 -0) 📝 `composer.json` (+3 -1) 📝 `lib/DependencyInjection/MessengerPass.php` (+41 -0) ➕ `lib/Event/MessengerWorkerStoppedEvent.php` (+22 -0) ➕ `lib/MessengerSubscriber/AddErrorDetailsStampListener.php` (+31 -0) ➕ `lib/MessengerSubscriber/ResetServicesListener.php` (+43 -0) ➕ `lib/MessengerSubscriber/SendFailedMessageForRetryListener.php` (+163 -0) ➕ `lib/MessengerSubscriber/SendFailedMessageToFailureTransportListener.php` (+70 -0) 📝 `lib/Model/MessengerServiceRunner.php` (+4 -1) 📝 `lib/Resources/config/services.yaml` (+21 -0) 📝 `lib/Win32ServiceBundle.php` (+1 -1) ➕ `phpunit.xml.dist` (+25 -0) ➕ `tests/Application/.env.test` (+2 -0) 📝 `tests/Application/config/packages/messenger.yaml` (+10 -1) 📝 `tests/Application/config/packages/win32service.yaml` (+2 -1) ➕ `tests/Application/src/Event/TestFailedMessage.php` (+9 -0) ➕ `tests/Application/src/Event/TestMemoryLimitMessage.php` (+12 -0) ➕ `tests/Application/src/Event/TestRetryMessage.php` (+9 -0) ➕ `tests/Application/src/Event/TestTimeLimitMessage.php` (+12 -0) ➕ `tests/Application/src/Handler/FailMessageHandler.php` (+23 -0) _...and 11 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-27 12:39:05 +01:00
admin closed this issue 2026-01-27 12:39:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: win32service/Win32ServiceBundle#21