mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-05-31 11:14:05 +00:00
ab6fbec158
SQLite :memory: databases create separate databases per connection. When the connection pool opens multiple connections (e.g. poller goroutine vs main test goroutine), tables created on one connection are invisible to others. Setting MaxOpenConns(1) ensures all queries use the same in-memory database, fixing TestPollerBroadcastsMultipleObservations.