mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Split auth on first colon
This commit is contained in:
parent
82cecb34b5
commit
a37b155384
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ func decodeAuth(authStr string) (string, string, error) {
|
|||
if n > decLen {
|
||||
return "", "", fmt.Errorf("Something went wrong decoding auth config")
|
||||
}
|
||||
arr := strings.Split(string(decoded), ":")
|
||||
arr := strings.SplitN(string(decoded), ":", 2)
|
||||
if len(arr) != 2 {
|
||||
return "", "", fmt.Errorf("Invalid auth configuration file")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue