mirror of
https://github.com/docker/compose.git
synced 2026-07-01 21:54:30 +00:00
Resolves race condition between main thread calling Done() and UI thread calling printWithDimensions(). The issue was that Done() held the mutex while sending to the done channel, but the UI thread needed the same mutex to process the done signal. Fixed by sending the done signal before acquiring the mutex, allowing the UI thread to receive the signal and release any held locks. Fixes #13639 Signed-off-by: maks2134 <maks210306@yandex.by> |
||
|---|---|---|
| .. | ||
| colors.go | ||
| dryrun.go | ||
| json.go | ||
| json_test.go | ||
| mode.go | ||
| plain.go | ||
| quiet.go | ||
| spinner.go | ||
| tty.go | ||
| tty_test.go | ||