summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-03-23 13:01:40 +0100
committerJacob Vosmaer <jacob@gitlab.com>2018-03-23 13:01:40 +0100
commit0189ee979ca6b17f6fafbffb53b0c1608f1adae3 (patch)
tree4a075b2c95ef2558b458434138394bedf41302e3
parent49e871680ce4ca4ef947916da4969cc4e80991eb (diff)
downloadgitlab-ce-0189ee979ca6b17f6fafbffb53b0c1608f1adae3.tar.gz
Show gitaly address instead of disk path
-rw-r--r--app/helpers/application_settings_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_settings_helper.rb b/app/helpers/application_settings_helper.rb
index c8dfa140529..b3b080e6dcf 100644
--- a/app/helpers/application_settings_helper.rb
+++ b/app/helpers/application_settings_helper.rb
@@ -96,7 +96,7 @@ module ApplicationSettingsHelper
def repository_storages_options_for_select(selected)
options = Gitlab.config.repositories.storages.map do |name, storage|
- ["#{name} - #{storage.legacy_disk_path}", name]
+ ["#{name} - #{storage['gitaly_address']}", name]
end
options_for_select(options, selected)