Files
oslo.service/releasenotes/notes/fix-threading-shutdown-cotyledon-3aff6ca0eb0125f5.yaml
Daniel Bengtsson e1964376dd Fix crash during shutdown by using public shutdown() method
Calling the non-existent internal method `_terminate()` on
`cotyledon.ServiceManager` caused a crash during service shutdown in
the threading backend. This patch replaces it with the proper public
`shutdown()` method, ensuring services terminate gracefully and reliably.

Change-Id: I7db5631454fcd520a74430a3cca9c4c955b2b060
2025-06-16 09:52:27 +02:00

8 lines
358 B
YAML

---
fixes:
- |
Fixed a crash that occurred during service shutdown in the threading
backend, caused by an incorrect call to the non-existent internal method
``_terminate()`` on ``cotyledon.ServiceManager``. The shutdown process now
correctly uses the public ``shutdown()`` method, ensuring graceful and
reliable termination of services.