Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for wildcard routes taking precedence over other routes #19076

Merged
merged 1 commit into from
Mar 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion images/router/haproxy/reload-haproxy
Original file line number Diff line number Diff line change
@@ -73,8 +73,12 @@ retries=20


# sort the path based map files for the haproxy map_beg function
# Leaving any wildcard route at the end of the resulting file,
# See https://github.com/openshift/origin/issues/16724 for more details.
for mapfile in "$haproxy_conf_dir"/*.map; do
sort -r "$mapfile" -o "$mapfile"
grep -v -F '^[^\.]*\' "$mapfile" | sort -r -o "/tmp/$mapfile"
grep -F '^[^\.]*\' "$mapfile" | sort -r >> "/tmp/$mapfile"
mv -f "/tmp/$mapfile" "$haproxy_conf_dir/$mapfile"
done

old_pids=$(ps -A -opid,args | grep haproxy | egrep -v -e 'grep|reload-haproxy' | awk '{print $1}' | tr '\n' ' ')