[PR #20] [MERGED] issue #17 add code to retry and PHPUnit for tests #20

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

📋 Pull Request Information

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

Base: 2.xHead: issue_17_failed_message_never_retried


📝 Commits (10+)

📊 Changes

28 files changed (+1062 additions, -3 deletions)

View changed files

.github/workflows/quality.yaml (+68 -0)
📝 composer.json (+3 -1)
📝 lib/DependencyInjection/MessengerPass.php (+39 -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 (+3 -0)
📝 lib/Resources/config/services.yaml (+19 -0)
📝 lib/Win32ServiceBundle.php (+1 -1)
phpunit.xml.dist (+25 -0)
tests/Application/.env.test (+2 -0)
📝 tests/Application/config/packages/messenger.yaml (+3 -0)
📝 tests/Application/config/packages/win32service.yaml (+2 -1)
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/MemoryLimitMessageHandler.php (+26 -0)
tests/Application/src/Handler/RetryMessageHandler.php (+24 -0)

...and 8 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/20 **Author:** [@jbcr](https://github.com/jbcr) **Created:** 10/22/2024 **Status:** ✅ Merged **Merged:** 10/23/2024 **Merged by:** [@macintoshplus](https://github.com/macintoshplus) **Base:** `2.x` ← **Head:** `issue_17_failed_message_never_retried` --- ### 📝 Commits (10+) - [`6644c34`](https://github.com/win32service/Win32ServiceBundle/commit/6644c3410b6b051d7f340e3b3b59a3f67d8c2b19) issue #17 add code to retry and PHPUnit for tests - [`68b5424`](https://github.com/win32service/Win32ServiceBundle/commit/68b542430f95a885b30a6a4eaffa9ff101bf0414) add branch for run action - [`8a9f74a`](https://github.com/win32service/Win32ServiceBundle/commit/8a9f74a6065bdc75cea143a03a91b595e521acfd) move workflow config - [`2025d94`](https://github.com/win32service/Win32ServiceBundle/commit/2025d942085ca9cd879d5007a6aeba14eb7c2914) fix matrix config - [`bcee3e0`](https://github.com/win32service/Win32ServiceBundle/commit/bcee3e05625c2df396ebf75449273646bf89ed21) set PHP version as string instead of float - [`ff661ee`](https://github.com/win32service/Win32ServiceBundle/commit/ff661eea1b5db3f49078484d1212463088620ed3) fix console path - [`08c0b73`](https://github.com/win32service/Win32ServiceBundle/commit/08c0b73107e193799aad59578bd02701455bc5dc) fix database path - [`55fd203`](https://github.com/win32service/Win32ServiceBundle/commit/55fd2033ade12544d975b11145a7223c680c1451) use mariadb - [`62e6137`](https://github.com/win32service/Win32ServiceBundle/commit/62e61372874016813ae044c7671612dfb7492697) fix env config - [`2cd6704`](https://github.com/win32service/Win32ServiceBundle/commit/2cd6704473c53d04c906df07771556768b7d9c11) try fix mariadb port ### 📊 Changes **28 files changed** (+1062 additions, -3 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/quality.yaml` (+68 -0) 📝 `composer.json` (+3 -1) 📝 `lib/DependencyInjection/MessengerPass.php` (+39 -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` (+3 -0) 📝 `lib/Resources/config/services.yaml` (+19 -0) 📝 `lib/Win32ServiceBundle.php` (+1 -1) ➕ `phpunit.xml.dist` (+25 -0) ➕ `tests/Application/.env.test` (+2 -0) 📝 `tests/Application/config/packages/messenger.yaml` (+3 -0) 📝 `tests/Application/config/packages/win32service.yaml` (+2 -1) ➕ `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/MemoryLimitMessageHandler.php` (+26 -0) ➕ `tests/Application/src/Handler/RetryMessageHandler.php` (+24 -0) _...and 8 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:03 +01:00
admin closed this issue 2026-01-27 12:39:03 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: win32service/Win32ServiceBundle#20