Skip to content

Commit

Permalink
Correct default IPV6 setting
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Nov 30, 2013
1 parent 319b65e commit 94acc7d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/sentry/conf/server.py
Expand Up @@ -466,6 +466,7 @@
# UDP Service
SENTRY_UDP_HOST = 'localhost'
SENTRY_UDP_PORT = 9001
SENTRY_USE_IPV6_UDP = False

# SMTP Service
SENTRY_ENABLE_EMAIL_REPLIES = False
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/services/udp.py
Expand Up @@ -76,7 +76,7 @@ def __init__(self, host=None, port=None, debug=False,
super(BaseUDPServer, self).__init__(debug=debug)
from django.conf import settings

self.use_ipv6 = use_ipv6 or settings.USE_IPV6_UDP
self.use_ipv6 = use_ipv6 or settings.SENTRY_USE_IPV6_UDP
self.host = host or settings.SENTRY_UDP_HOST
self.port = port or settings.SENTRY_UDP_PORT
self.workers = workers or self.POOL_SIZE
Expand Down
2 changes: 0 additions & 2 deletions src/sentry/utils/runner.py
Expand Up @@ -169,8 +169,6 @@
# https://confluence.atlassian.com/display/BITBUCKET/OAuth+Consumers
BITBUCKET_CONSUMER_KEY = ''
BITBUCKET_CONSUMER_SECRET = ''
USE_IPV6_UDP = False
"""


Expand Down

0 comments on commit 94acc7d

Please sign in to comment.