Follow-up on Check 2 (sleeping MySQL connections) — second sample after an overnight interval, as recommended in the test case.
**Second sample** ``` SELECT count(*), state FROM information_schema.processlist GROUP BY state; count(*) state 9 <- empty/sleeping state 1 executing ``` **Comparison across both samples** | Sample | Sleeping (empty state) | Executing | |---|---|---| | 1st (immediate) | 15 | 1 | | 2nd (overnight) | 9 | 1 | The sleeping-connection count went **down**, not up, over the interval - the opposite of the leak pattern in the original bug report (which grew ~4/min and exhausted the pool within ~15min of a pod restart). This confirms the count remains bounded and does not trend upward. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2086710 Title: [SRU] watcher's use of apscheduler is incompatible with python 3.12 and eventlet To manage notifications about this bug go to: https://bugs.launchpad.net/cloud-archive/caracal/+bug/2086710/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
