From 75e7c95d5cf367996034c6c9b0a171f2448c3799 Mon Sep 17 00:00:00 2001 From: Pierre Accorsi Date: Mon, 9 Aug 2021 17:07:44 -0400 Subject: [PATCH] Stop injecting statsd parameters into the configurable HTTP proxy command --- jupyterhub/proxy.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/jupyterhub/proxy.py b/jupyterhub/proxy.py index 5f706970..b410dff1 100644 --- a/jupyterhub/proxy.py +++ b/jupyterhub/proxy.py @@ -683,17 +683,6 @@ class ConfigurableHTTPProxy(Proxy): cmd.extend(['--ssl-cert', self.ssl_cert]) if self.app.internal_ssl: cmd.extend(self._get_ssl_options()) - if self.app.statsd_host: - cmd.extend( - [ - '--statsd-host', - self.app.statsd_host, - '--statsd-port', - str(self.app.statsd_port), - '--statsd-prefix', - self.app.statsd_prefix + '.chp', - ] - ) # Warn if SSL is not used if ' --ssl' not in ' '.join(cmd): self.log.warning(