Revert "Add support for STATSD_IPV6"

This reverts commit 58638db5e7.

This change had no docs or tests.

Change-Id: I85a539fc69150986d0644dfa20b24876f7705d1d
This commit is contained in:
James E. Blair 2018-03-26 15:31:08 -07:00
parent 41876a4f58
commit 882b06ca6b
1 changed files with 0 additions and 2 deletions

View File

@ -37,8 +37,6 @@ def get_client():
statsd_args['host'] = os.environ['STATSD_HOST']
if os.getenv('STATSD_PORT', None):
statsd_args['port'] = os.environ['STATSD_PORT']
if os.getenv('STATSD_IPV6', False):
statsd_args['ipv6'] = os.environ['STATSD_IPV6']
if statsd_args:
return statsd.StatsClient(**statsd_args)
else: