Commit da0d8e04 authored by Sean McGivern's avatar Sean McGivern

Fix `Routable.find_by_full_path` on MySQL

parent 56fb7823
......@@ -49,7 +49,7 @@ module Routable
if Gitlab::Database.postgresql?
joins(:redirect_routes).find_by("LOWER(redirect_routes.path) = LOWER(?)", path)
else
joins(:redirect_routes).find_by(path: path)
joins(:redirect_routes).find_by(redirect_routes: { path: path })
end
end
end
......
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