You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use spawn instead of block_on in TestDatabase Drop to avoid runtime nesting
The tokio #[tokio::test] macro creates its own runtime, so calling
block_on from Drop causes a 'Cannot start a runtime from within a
runtime' panic in CI. Using spawn() detaches the cleanup task instead.
0 commit comments