
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
8 lines
358 B
YAML
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. |