Commit 802423d8 authored by Gabriel Monnerat's avatar Gabriel Monnerat

fix regex to match one or more numbers

parent 26fbb047
...@@ -81,7 +81,7 @@ class Recipe(BaseSlapRecipe): ...@@ -81,7 +81,7 @@ class Recipe(BaseSlapRecipe):
base_varnish_control_port = base_varnish_port base_varnish_control_port = base_varnish_port
base_varnish_port += 1 base_varnish_port += 1
# Use regex # Use regex
host_regex = "((\[\w*|[0-9]+\.)(\:|)).*(\]|\.[0-9])" host_regex = "((\[\w*|[0-9]+\.)(\:|)).*(\]|\.[0-9]+)"
slave_host = re.search(host_regex, url).group(0) slave_host = re.search(host_regex, url).group(0)
port_regex = "\w+(\/|)$" port_regex = "\w+(\/|)$"
matcher = re.search(port_regex, url) matcher = re.search(port_regex, url)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment