Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Pérez-Aradros Herce committed Nov 27, 2018
1 parent 38c928d commit c44d1f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.asciidoc
Expand Up @@ -33,6 +33,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha1...master[Check the HEAD d

*Affecting all Beats*

- Keep a mapping of autodiscover instances and deployed configs. {pull}8851[8851]

*Auditbeat*

*Filebeat*
Expand Down
Expand Up @@ -23,6 +23,7 @@ import (
"testing"
"time"

"github.com/gofrs/uuid"
"github.com/stretchr/testify/assert"

"github.com/elastic/beats/libbeat/common"
Expand All @@ -37,9 +38,13 @@ func TestDockerStart(t *testing.T) {
t.Fatal(err)
}

UUID, err := uuid.NewV4()
if err != nil {
t.Fatal(err)
}
bus := bus.New("test")
config := common.NewConfig()
provider, err := AutodiscoverBuilder(bus, config)
provider, err := AutodiscoverBuilder(bus, UUID, config)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit c44d1f4

Please sign in to comment.