Commit e0611d7d authored by Seth Vargo's avatar Seth Vargo

Merge pull request #1917 from sequenceiq/atlas-postprocessor-auth-failure-hint

Clarify error message in case of an atlas client connection failure
parents 2db039bf a9648be5
...@@ -115,7 +115,7 @@ func (p *PostProcessor) Configure(raws ...interface{}) error { ...@@ -115,7 +115,7 @@ func (p *PostProcessor) Configure(raws ...interface{}) error {
p.client, err = atlas.NewClient(p.config.ServerAddr) p.client, err = atlas.NewClient(p.config.ServerAddr)
if err != nil { if err != nil {
errs = packer.MultiErrorAppend( errs = packer.MultiErrorAppend(
errs, fmt.Errorf("Error initializing client: %s", err)) errs, fmt.Errorf("Error initializing atlas client: %s", err))
return errs return errs
} }
} }
...@@ -126,8 +126,13 @@ func (p *PostProcessor) Configure(raws ...interface{}) error { ...@@ -126,8 +126,13 @@ func (p *PostProcessor) Configure(raws ...interface{}) error {
if !p.config.Test { if !p.config.Test {
// Verify the client // Verify the client
if err := p.client.Verify(); err != nil { if err := p.client.Verify(); err != nil {
if err == atlas.ErrAuth {
errs = packer.MultiErrorAppend( errs = packer.MultiErrorAppend(
errs, fmt.Errorf("Error initializing client: %s", err)) errs, fmt.Errorf("Error connecting to atlas server, please check your ATLAS_TOKEN env: %s", err))
} else {
errs = packer.MultiErrorAppend(
errs, fmt.Errorf("Error initializing atlas client: %s", err))
}
return errs return errs
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment