Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Cobb <rcobb@gitlab.com>2019-07-04 02:19:15 +0300
committerRyan Cobb <rcobb@gitlab.com>2019-07-10 02:02:08 +0300
commit36f39eb3189a4caa5225214570de3bfdcd418df1 (patch)
tree5667a649c146496c5ca41e936a1c87f2c7ace9ca /db/importers
parent3cabc5581e4d96180c83fbe3d24362bb2c64f2be (diff)
Remove CommonMetricsImporter patch
Remove CommonMetricsImporter patch and change all references to CommonMetrics::Importer. Move specs into their appropriate folders. Also cleans up some common_metric importer namespacing.
Diffstat (limited to 'db/importers')
-rw-r--r--db/importers/common_metrics_importer.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/db/importers/common_metrics_importer.rb b/db/importers/common_metrics_importer.rb
deleted file mode 100644
index a2e3996a123..00000000000
--- a/db/importers/common_metrics_importer.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# This functionality has been moved to the lib/gitlab/importers/common_metrics module.
-# This is here only to preserve existing ::Importers::CommonMetricsImporter api
-module Importers
- module CommonMetricsImporter
- def self.new(*args)
- Gitlab::Importers::CommonMetrics::Importer.new(*args)
- end
- end
-end