- Issue created by @cmlara
- Merge request !1Issue #3541759: Removed closing of the shared connection. → (Open) created by arunsahijpal
- 🇺🇸United States cmlara
NW for the PHPstan Baseline ignore removal and an IS update to capture the changes to scope.
A queue shutting down should not cause the connection to be closed for all other queues.
> \Drupal::service('queue')->get('test3')->createItem('test');
= "21e91e4a-e684-47d3-81b6-97a21d8ada22"
> \Drupal::service('queue')->get('test')->shutdown();
= null
> \Drupal::service('queue')->get('test3')->createItem('test');
[error] Failed to send item to queue test3: Channel connection is closed.
= false
Remove connection->close()
from shutdown()
QueueBase::shutdown() will not close connection.
Active
2.0
Code
NW for the PHPstan Baseline ignore removal and an IS update to capture the changes to scope.