aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java
diff options
context:
space:
mode:
authorHarald Musum <musum@oath.com>2018-12-12 13:33:00 +0100
committerGitHub <noreply@github.com>2018-12-12 13:33:00 +0100
commita6ac6fa83b28372727b70d776652fd05240e74f5 (patch)
tree00eb6b7808844e50495ee8f14ff04a045c1bd08d /jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java
parentcf4ba9d201390e2fe24c8bb068aa4a39db474e92 (diff)
parentd069b916a89a2e40800a6a143aeef4e73826473c (diff)
Merge pull request #7928 from vespa-engine/gjoranv/revert-throttling
Gjoranv/revert throttling
Diffstat (limited to 'jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java')
-rw-r--r--jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java b/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java
index a80e694ed30..f7d6e1717af 100644
--- a/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java
+++ b/jdisc_http_service/src/main/java/com/yahoo/jdisc/http/server/jetty/JDiscServerConnector.java
@@ -50,10 +50,6 @@ class JDiscServerConnector extends ServerConnector {
this.statistics = new ServerConnectionStatistics();
addBean(statistics);
- ConnectorConfig.Throttling throttlingConfig = config.throttling();
- if (throttlingConfig.enabled()) {
- new ConnectionThrottler(this, throttlingConfig).registerBeans();
- }
}
@Override