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
{{ message }}
This repository was archived by the owner on Sep 30, 2024. It is now read-only.
I discovered a second one: campaignProgressPrinter reads and mutates its own state across multiple calls of PrintStatuses. These calls can happen in separate goroutines, which might leak to concurrent accesses of the same data structures (and caused a panic for me locally)
There are two race conditions in the
campaignProgressPrinter:campaignProgressPrinterreads and mutates its own state across multiple calls ofPrintStatuses. These calls can happen in separate goroutines, which might leak to concurrent accesses of the same data structures (and caused a panic for me locally)