Merge branch 'master' into develop
This commit is contained in:
commit
3aae6d7b5c
2 changed files with 4 additions and 1 deletions
|
@ -19,6 +19,9 @@ export class Tag extends TagsFilter {
|
|||
if (value === undefined) {
|
||||
throw `Invalid value while constructing a Tag with key '${key}': value is undefined`
|
||||
}
|
||||
if(value.length > 255 || key.length > 255){
|
||||
throw "Invalid tag: length is over 255"
|
||||
}
|
||||
if (value === "*") {
|
||||
console.warn(`Got suspicious tag ${key}=* ; did you mean ${key}~* ?`)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue