Commit 0dd8a26a3a04cc59d13d83c3fbae4b39acddab67
1 parent
3f252ed1
Exists in
master
and in
4 other branches
Fix satellite path settings
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
config/initializers/1_settings.rb
@@ -78,5 +78,5 @@ Settings.git['max_size'] ||= 5242880 # 5.megabytes | @@ -78,5 +78,5 @@ Settings.git['max_size'] ||= 5242880 # 5.megabytes | ||
78 | Settings.git['bin_path'] ||= '/usr/bin/git' | 78 | Settings.git['bin_path'] ||= '/usr/bin/git' |
79 | Settings.git['timeout'] ||= 10 | 79 | Settings.git['timeout'] ||= 10 |
80 | 80 | ||
81 | -Settings['satellites'] ||= {} | ||
82 | -Settings.satellites['path'] ||= '/home/gitlab/gitlab/tmp/repo_satellites/' | 81 | +Settings['satellites'] ||= Settingslogic.new({}) |
82 | +Settings.satellites['path'] ||= Rails.root.join('tmp/repo_satellites/') |