Fix formatting

This commit is contained in:
Kyle Havlovitz 2017-01-09 13:40:50 -08:00
parent 12da452136
commit 6b5cf20b1c
No known key found for this signature in database
GPG Key ID: 8A5E6B173056AD6C
3 changed files with 4 additions and 9 deletions

View File

@ -1728,9 +1728,6 @@ func validateMetaPair(key, value string) error {
if len(key) > metaKeyMaxLength {
return fmt.Errorf("Key is longer than %d chars", metaKeyMaxLength)
}
if strings.Contains(key, ":") {
return fmt.Errorf("Key contains ':' character")
}
if strings.HasPrefix(key, metaKeyReservedPrefix) {
return fmt.Errorf("Key prefix '%s' is reserved for internal use", metaKeyReservedPrefix)
}

View File

@ -1901,8 +1901,6 @@ func TestAgent_validateMetaPair(t *testing.T) {
{"", "value", false},
// allowed special chars in key name
{"k_e-y", "value", true},
// ':' in key name
{"k:ey", "value", false},
// disallowed special chars in key name
{"(%key&)", "value", false},
// key too long