fix: allow underscore as a valid char in tunnel remote address (#190904)

adjust the regexes used to validate tunnel remote addresses, add underscore as a valid char.
This commit is contained in:
floge07
2023-08-21 21:18:44 +02:00
committed by GitHub
parent 548c32e80c
commit d0b14e8569
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@
},
{
"type": "string",
"pattern": "^([a-z0-9-]+):(\\d{1,5})$"
"pattern": "^([a-z0-9_-]+):(\\d{1,5})$"
}
]
}