diff options
author | Kamil Trzciński <ayufan@ayufan.eu> | 2018-09-11 10:00:05 +0200 |
---|---|---|
committer | Kamil Trzciński <ayufan@ayufan.eu> | 2018-09-11 17:40:32 +0200 |
commit | fe8b842a755375e4ab9e716c5ab8c34ea868e96a (patch) | |
tree | be9afb21a4614543129ed35ec34b5251b79380be /db/importers | |
parent | b9ea4e35ac679a87ea16ca01a5f02bd96b3b16c3 (diff) | |
download | gitlab-ce-fe8b842a755375e4ab9e716c5ab8c34ea868e96a.tar.gz |
Use Rails.root for CommonMetricsImporter
Diffstat (limited to 'db/importers')
-rw-r--r-- | db/importers/common_metrics_importer.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/importers/common_metrics_importer.rb b/db/importers/common_metrics_importer.rb index 01fbbd6866b..6302394d7a6 100644 --- a/db/importers/common_metrics_importer.rb +++ b/db/importers/common_metrics_importer.rb @@ -35,8 +35,8 @@ module Importers attr_reader :content - def initialize(file = 'config/prometheus/common_metrics.yml') - @content = YAML.load_file(file) + def initialize(filename = 'common_metrics.yml') + @content = YAML.load_file(Rails.root.join('config', 'prometheus', filename)) end def execute |