agent: fix code for updated go-discover signature

Closes #3351
This commit is contained in:
Frank Schroeder 2017-08-02 17:59:47 +02:00
parent 5f6b74d4ee
commit 1cb602e085
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
2 changed files with 6 additions and 13 deletions

View File

@ -6,13 +6,6 @@ import (
"time"
discover "github.com/hashicorp/go-discover"
// support retry-join only for the following providers
// to add more providers import additional packages or 'all'
// to support all providers of go-discover
_ "github.com/hashicorp/go-discover/provider/aws"
_ "github.com/hashicorp/go-discover/provider/azure"
_ "github.com/hashicorp/go-discover/provider/gce"
)
// RetryJoin is used to handle retrying a join until it succeeds or all
@ -23,7 +16,8 @@ func (a *Agent) retryJoin() {
return
}
a.logger.Printf("[INFO] agent: Supporting retry join for %v", discover.ProviderNames())
disco := discover.Discover{}
a.logger.Printf("[INFO] agent: Retry join is supported for: %s", strings.Join(disco.Names(), " "))
a.logger.Printf("[INFO] agent: Joining cluster...")
attempt := 0
for {
@ -33,7 +27,7 @@ func (a *Agent) retryJoin() {
for _, addr := range cfg.RetryJoin {
switch {
case strings.Contains(addr, "provider="):
servers, err := discover.Addrs(addr, a.logger)
servers, err := disco.Addrs(addr, a.logger)
if err != nil {
a.logger.Printf("[ERR] agent: %s", err)
} else {

View File

@ -7,11 +7,10 @@ import (
discover "github.com/hashicorp/go-discover"
)
// if this test fails check the _ imports of go-discover/provider/* packages
// in retry_join.go
func TestGoDiscoverRegistration(t *testing.T) {
got := discover.ProviderNames()
want := []string{"aws", "azure", "gce"}
d := discover.Discover{}
got := d.Names()
want := []string{"aws", "azure", "gce", "softlayer"}
if !reflect.DeepEqual(got, want) {
t.Fatalf("got go-discover providers %v want %v", got, want)
}