diff options
author | Christian Breunig <christian@breunig.cc> | 2025-05-20 16:10:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-20 16:10:57 +0200 |
commit | d15000b645c690c4d67dc6bb6bc924f16703e352 (patch) | |
tree | 33ec5d06719a935cced67d3336d487f2ba7a9f70 /interface-definitions/load-balancing_haproxy.xml.in | |
parent | 532a2ef2f9c4fca7589a968c18d0e896912e2a78 (diff) | |
parent | de7af067e8a62471437d97c96de2078cdbe22b0a (diff) | |
download | vyos-1x-d15000b645c690c4d67dc6bb6bc924f16703e352.tar.gz vyos-1x-d15000b645c690c4d67dc6bb6bc924f16703e352.zip |
Merge pull request #4518 from dmbaturin/T7467-no-regex-wrapping
xml: T7467: remove ^/$ wrapping from validation regexes
Diffstat (limited to 'interface-definitions/load-balancing_haproxy.xml.in')
-rw-r--r-- | interface-definitions/load-balancing_haproxy.xml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interface-definitions/load-balancing_haproxy.xml.in b/interface-definitions/load-balancing_haproxy.xml.in index f0f64e75a..61ff8bc81 100644 --- a/interface-definitions/load-balancing_haproxy.xml.in +++ b/interface-definitions/load-balancing_haproxy.xml.in @@ -159,7 +159,7 @@ <properties> <help>URI used for HTTP health check (Example: '/' or '/health')</help> <constraint> - <regex>^\/([^?#\s]*)(\?[^#\s]*)?$</regex> + <regex>\/([^?#\s]*)(\?[^#\s]*)?</regex> </constraint> </properties> </leafNode> |