mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #9757 from lindenlab/9712-validTagName-errormessage
Fixing ValidateTagName error message #9712
This commit is contained in:
commit
043e33c2c1
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ func ValidateTagName(name string) error {
|
||||||
return fmt.Errorf("Tag name can't be empty")
|
return fmt.Errorf("Tag name can't be empty")
|
||||||
}
|
}
|
||||||
if !validTagName.MatchString(name) {
|
if !validTagName.MatchString(name) {
|
||||||
return fmt.Errorf("Illegal tag name (%s): only [A-Za-z0-9_.-] are allowed, minimum 2, maximum 30 in length", name)
|
return fmt.Errorf("Illegal tag name (%s): only [A-Za-z0-9_.-] are allowed, minimum 1, maximum 128 in length", name)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue