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:
authorAdam Niedzielski <adamsunday@gmail.com>2017-03-01 20:15:28 +0300
committerAdam Niedzielski <adamsunday@gmail.com>2017-03-01 20:15:28 +0300
commitee318727774dbec75d5506a4b4749fc4236206d5 (patch)
treeb067a3ad0713a0707b20648b1441e9e3c7a583ec /doc/development/instrumentation.md
parentc661df356156240deeef7c2734670ba5f2b4b04b (diff)
Execute metrics initializer earlier
This makes sure that Gitlab::Metrics::RackMiddleware is added before Gitlab::EtagCaching::Middleware.
Diffstat (limited to 'doc/development/instrumentation.md')
-rw-r--r--doc/development/instrumentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/instrumentation.md b/doc/development/instrumentation.md
index b8669964c84..a14c0752366 100644
--- a/doc/development/instrumentation.md
+++ b/doc/development/instrumentation.md
@@ -35,7 +35,7 @@ Using this method is in general preferred over directly calling the various
instrumentation methods.
Method instrumentation should be added in the initializer
-`config/initializers/metrics.rb`.
+`config/initializers/8_metrics.rb`.
### Examples