1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix login command

Signed-off-by: Tibor Vass <teabee89@gmail.com>
This commit is contained in:
Tibor Vass 2014-10-28 21:20:30 -04:00
parent e43d9f713e
commit 05c18a2434

View file

@ -50,9 +50,11 @@ func (s *Service) Auth(job *engine.Job) engine.Status {
authConfig.ServerAddress = endpoint.String() authConfig.ServerAddress = endpoint.String()
} }
if _, err := Login(authConfig, HTTPRequestFactory(nil)); err != nil { status, err := Login(authConfig, HTTPRequestFactory(nil))
if err != nil {
return job.Error(err) return job.Error(err)
} }
job.Printf("%s\n", status)
return engine.StatusOK return engine.StatusOK
} }