Commit 2c905797 authored by Robert Speicher's avatar Robert Speicher

Set default_url_options in test environments too

parent aa9435cd
unless Rails.env.test? default_url_options = {
default_url_options = { host: Gitlab.config.gitlab.host,
host: Gitlab.config.gitlab.host, protocol: Gitlab.config.gitlab.protocol,
protocol: Gitlab.config.gitlab.protocol, script_name: Gitlab.config.gitlab.relative_url_root
script_name: Gitlab.config.gitlab.relative_url_root }
}
unless Gitlab.config.gitlab_on_standard_port? unless Gitlab.config.gitlab_on_standard_port?
default_url_options[:port] = Gitlab.config.gitlab.port default_url_options[:port] = Gitlab.config.gitlab.port
end
Rails.application.routes.default_url_options = default_url_options
end end
Rails.application.routes.default_url_options = default_url_options
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