Skip to content

Commit

Permalink
[chore] do not initialize empty slices (#3626)
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme authored Jan 20, 2025
1 parent 700d732 commit 314df7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/otel-allocator/allocation/allocator.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func (a *allocator) handleTargets(diff diff.Changes[*target.Item]) {
}

// Check for additions
assignmentErrors := []error{}
var assignmentErrors []error
for k, item := range diff.Additions() {
// Do nothing if the item is already there
if _, ok := a.targetItems[k]; ok {
Expand Down Expand Up @@ -297,7 +297,7 @@ func (a *allocator) handleCollectors(diff diff.Changes[*Collector]) {
a.strategy.SetCollectors(a.collectors)

// Re-Allocate all targets
assignmentErrors := []error{}
var assignmentErrors []error
for _, item := range a.targetItems {
err := a.addTargetToTargetItems(item)
if err != nil {
Expand Down

0 comments on commit 314df7b

Please sign in to comment.