Hide Forgot
Description of problem: When using the Thin + Apache setup, URLs arrive at Rails with an extra forward slash just after the prefix. This is known to break the retrievable of search history for the fancy queries drop-down on pages with tupane search. (e.g. GET "/katello//organizations/auto_complete_search?search=organ" ) Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. Start up Katello via Apache+Thin: RAILS_RELATIVE_URL_ROOT=/katello ./script/thin start --config /etc/katello/thin.yml --rackup config.ru 2. Navigate to Systems page 3. Check Rails logs to see details of request Actual results: Requests have an extra forward slash after the prefix in them: "/katello//organizations/auto_complete_search?search=organ" Expected results: No extra slash: "/katello/organizations/auto_complete_search?search=organ" Additional info:
git commit - 4f258b9118b9a360dfc3c09283bb6e95fa0ea609 Resolved the issue of the unnecessary / in the resources; however, recent changes to move search to elasticsearch has caused search history to not work properly. That issue is documented in bug 782518.
Test notes: <bbuckingham> what you can do, is to monitor the production.log and see that requests from the browser to not have the extra /
Verified.
getting rid of 6.0.0 version since that doesn't exist