We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dacfb0 commit 10a006eCopy full SHA for 10a006e
test/functional/test_framework/netutil.py
@@ -147,10 +147,12 @@ def test_ipv6_local():
147
'''
148
# By using SOCK_DGRAM this will not actually make a connection, but it will
149
# fail if there is no route to IPv6 localhost.
150
- have_ipv6 = True
151
- try:
152
- s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
153
- s.connect(('::1', 1))
154
- except socket.error:
155
- have_ipv6 = False
156
- return have_ipv6
+ return False
+ # TODO: disabled until amazon ipv6 issues are resolved
+ # have_ipv6 = True
+ # try:
+ # s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
+ # s.connect(('::1', 1))
+ # except socket.error:
157
+ # have_ipv6 = False
158
+ # return have_ipv6
0 commit comments