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: add multi_thread tokio runtime to error_notification tests
The error_notification tests were failing in CI with:
"can call blocking only when running on the multi-threaded runtime"
This occurred because the tests defaulted to current_thread runtime,
but the code uses tokio::task::block_in_place in WASM runtime and
SQLite storage, which requires the multi-threaded runtime.
Fixed by adding tokio_flavor = "multi_thread" and tokio_worker_threads = 4
to all three error_notification tests.
Tests now pass: 4/4 error_notification tests ✅
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments