fix: don't join Drop cleanup thread — prevents deadlock in tokio tests
The Drop impl spawned a thread with a new tokio runtime and called .join(), which blocked the test thread. The spawned thread's block_on deadlocked when pool.close() tried to communicate with connections owned by the outer tokio runtime. Removing .join() makes cleanup fire-and-forget, avoiding the deadlock. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>master
parent
243558b950
commit
a0a8f72caa
Loading…
Reference in New Issue