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:
authorSean McGivern <sean@gitlab.com>2017-05-05 12:33:41 +0300
committerSean McGivern <sean@gitlab.com>2017-05-05 12:37:54 +0300
commit7af4c0c4f7dc66f7293a121d1c0e2caa8a5050c6 (patch)
treedc16df67b90f62d568ba40fa736b38e7dc970a2a /lib/gitlab/email/handler/unsubscribe_handler.rb
parent07eac529fc0ec30ff6bea2bba01c68b72fee4f14 (diff)
Fix email receiver metrics events
`Project#inspect` isn't very useful for examining usage of these features.
Diffstat (limited to 'lib/gitlab/email/handler/unsubscribe_handler.rb')
-rw-r--r--lib/gitlab/email/handler/unsubscribe_handler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/email/handler/unsubscribe_handler.rb b/lib/gitlab/email/handler/unsubscribe_handler.rb
index df70a063330..5894384da5d 100644
--- a/lib/gitlab/email/handler/unsubscribe_handler.rb
+++ b/lib/gitlab/email/handler/unsubscribe_handler.rb
@@ -20,7 +20,7 @@ module Gitlab
end
def metrics_params
- super.merge(project: project)
+ super.merge(project: project&.full_path)
end
private