mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
* Add test for #4808: Race condition on disableTiming field Add test that verifies disableTiming field uses atomic.Bool instead of plain bool to prevent race conditions. The test checks that: - disableTiming is declared as atomic.Bool - shouldFetchTiming() uses atomic Load() - getQueryTiming() uses atomic Store() operations - Direct assignments that cause races are not present This test will fail until the implementation is fixed. * Fix #4808: Use atomic.Bool for disableTiming to prevent race condition
This commit is contained in: