Fix panic on logger (#2745)

This commit is contained in:
qwerty287 2023-11-05 09:31:06 +01:00 committed by GitHub
parent 3524301335
commit 45a5a2dde5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -2,9 +2,9 @@
## [1.0.4](https://github.com/woodpecker-ci/woodpecker/releases/tag/v1.0.4) - 2023-11-05
* BUGFIXES
* Fix secret image filter regex (#2674) (#2686)
* Fix error when closing logs (#2637) (#2640)
- BUGFIXES
- Fix secret image filter regex (#2674) (#2686)
- Fix error when closing logs (#2637) (#2640)
## [1.0.3](https://github.com/woodpecker-ci/woodpecker/releases/tag/v1.0.3) - 2023-10-14

View file

@ -86,6 +86,7 @@ func (l *log) Write(ctx context.Context, stepID int64, logEntry *model.LogEntry)
if err != nil {
return err
}
s = l.streams[stepID]
}
s.Lock()