Skip to content

Commit

Permalink
upgrade github.com/gogo/protobuf/... to v1.3.1 (elastic#16138)
Browse files Browse the repository at this point in the history
  • Loading branch information
graphaelli authored and kvch committed Feb 20, 2020
1 parent 335401c commit 854dcf1
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion dev-tools/packaging/templates/common/magefile.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/magefile/mage/mg"
"github.com/magefile/mage/sh"

devtools "github.com/elastic/beats/dev-tools/mage"
devtools "github.com/elastic/beats/v7/dev-tools/mage"
)

func init() {
Expand Down
8 changes: 4 additions & 4 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/ec2.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import (
"github.com/pkg/errors"

<<<<<<< HEAD
"github.com/elastic/beats/v7/v7/libbeat/common"
"github.com/elastic/beats/v7/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/logp"
awsauto "github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws"
>>>>>>> Add autodiscover for aws_ec2 (#14823)
)

Expand Down
6 changes: 3 additions & 3 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
"go.uber.org/multierr"

<<<<<<< HEAD
"github.com/elastic/beats/v7/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/libbeat/logp"
awsauto "github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws"
>>>>>>> Add autodiscover for aws_ec2 (#14823)
)

Expand Down
18 changes: 9 additions & 9 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ import (
"github.com/pkg/errors"

<<<<<<< HEAD
"github.com/elastic/beats/v7/v7/libbeat/autodiscover"
"github.com/elastic/beats/v7/v7/libbeat/autodiscover/template"
"github.com/elastic/beats/v7/v7/libbeat/common"
"github.com/elastic/beats/v7/v7/libbeat/common/bus"
"github.com/elastic/beats/v7/v7/libbeat/common/cfgwarn"
"github.com/elastic/beats/v7/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws"
awscommon "github.com/elastic/beats/v7/v7/x-pack/libbeat/common/aws"
=======
"github.com/elastic/beats/v7/libbeat/autodiscover"
"github.com/elastic/beats/v7/libbeat/autodiscover/template"
"github.com/elastic/beats/v7/libbeat/common"
Expand All @@ -19,15 +28,6 @@ import (
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
awscommon "github.com/elastic/beats/v7/x-pack/libbeat/common/aws"
=======
"github.com/elastic/beats/libbeat/autodiscover"
"github.com/elastic/beats/libbeat/autodiscover/template"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/bus"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/libbeat/logp"
awsauto "github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws"
awscommon "github.com/elastic/beats/x-pack/libbeat/common/aws"
>>>>>>> Add autodiscover for aws_ec2 (#14823)
)

Expand Down
20 changes: 10 additions & 10 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,23 @@ import (

<<<<<<< HEAD
=======
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/bus"
"github.com/elastic/beats/libbeat/logp"
awsauto "github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws"
"github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws/test"
"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/libbeat/common/bus"
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
"github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws/test"
>>>>>>> Add autodiscover for aws_ec2 (#14823)
"github.com/gofrs/uuid"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
<<<<<<< HEAD

"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/libbeat/common/bus"
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
"github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws/test"
"github.com/elastic/beats/v7/v7/libbeat/common"
"github.com/elastic/beats/v7/v7/libbeat/common/bus"
"github.com/elastic/beats/v7/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws"
"github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws/test"
=======
>>>>>>> Add autodiscover for aws_ec2 (#14823)
)
Expand Down
6 changes: 3 additions & 3 deletions x-pack/libbeat/autodiscover/providers/aws/ec2/watch.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/pkg/errors"

<<<<<<< HEAD
"github.com/elastic/beats/v7/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/v7/libbeat/logp"
awsauto "github.com/elastic/beats/v7/x-pack/libbeat/autodiscover/providers/aws"
=======
"github.com/elastic/beats/libbeat/logp"
awsauto "github.com/elastic/beats/x-pack/libbeat/autodiscover/providers/aws"
>>>>>>> Add autodiscover for aws_ec2 (#14823)
)

Expand Down

0 comments on commit 854dcf1

Please sign in to comment.