summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-29 05:26:52 +0200
committerGitHub <noreply@github.com>2018-06-29 05:26:52 +0200
commitd5f2d8158b90a55cefe126e38132e390e9fa75f5 (patch)
tree8d31e608d7bf81d919fc4b8240508a4cb1982c41 /Bugzilla/WebService
parent4a15e8b3b36dcde234ef2e068d931a59e0ce1d4e (diff)
downloadbugzilla-d5f2d8158b90a55cefe126e38132e390e9fa75f5.tar.gz
bugzilla-d5f2d8158b90a55cefe126e38132e390e9fa75f5.tar.xz
Bug 1472048 - Remove Metrics Code
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r--Bugzilla/WebService/Server.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/Bugzilla/WebService/Server.pm b/Bugzilla/WebService/Server.pm
index ba9847abc..a76c4c48c 100644
--- a/Bugzilla/WebService/Server.pm
+++ b/Bugzilla/WebService/Server.pm
@@ -23,11 +23,6 @@ sub handle_login {
# Throw error if the supplied class does not exist or the method is private
ThrowCodeError('unknown_method', {method => $full_method}) if (!$class or $method =~ /^_/);
- # BMO - use the class and method as the name, instead of the cgi filename
- if (Bugzilla->metrics_enabled) {
- Bugzilla->metrics->name("$class $method");
- }
-
# We never want to create a new session unless the user is calling the
# login method. Setting dont_persist_session makes
# Bugzilla::Auth::_handle_login_result() skip calling persist_login().