Skip to content

Commit

Permalink
Move location of changelog entry and waitgroup wait (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptodev authored Jan 15, 2025
1 parent 9661f51 commit fa77018
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Main (unreleased)

- Improved performance by reducing allocation in Prometheus write pipelines by ~30% (@thampiotr)

- Add json format support for log export via faro receiver (@ravishankar15)

v1.6.0-rc.1
-----------------

Expand Down Expand Up @@ -75,7 +77,6 @@ v1.6.0-rc.1
- Add perf_schema quantile columns to collector

- Live Debugging button should appear in UI only for supported components (@ravishankar15)
- Add json format support for log export via faro receiver (@ravishankar15)
- Add three new stdlib functions to_base64, from_URLbase64 and to_URLbase64 (@ravishankar15)
- Add `ignore_older_than` option for local.file_match (@ravishankar15)
- Add livedebugging support for discovery components (@ravishankar15)
Expand Down
2 changes: 1 addition & 1 deletion internal/component/faro/receiver/receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ func newFakeLogsReceiver(t *testing.T) *fakeLogsReceiver {
lr.wg.Add(1)
go func() {
defer close(lr.ch)
defer lr.wg.Done()

select {
case <-ctx.Done():
Expand All @@ -178,7 +179,6 @@ func newFakeLogsReceiver(t *testing.T) *fakeLogsReceiver {
},
})
lr.entriesMut.Unlock()
lr.wg.Done()
}
}()

Expand Down

0 comments on commit fa77018

Please sign in to comment.