##// END OF EJS Templates
infinitepush: don't force ipv6 while connecting to mysql server...
Pulkit Goyal -
r37251:c1fac387 default
parent child Browse files
Show More
@@ -60,8 +60,7 b' class sqlindexapi(indexapi.indexapi):'
60 retry = 3
60 retry = 3
61 while True:
61 while True:
62 try:
62 try:
63 self.sqlconn = mysql.connector.connect(
63 self.sqlconn = mysql.connector.connect(**self.sqlargs)
64 force_ipv6=True, **self.sqlargs)
65
64
66 # Code is copy-pasted from hgsql. Bug fixes need to be
65 # Code is copy-pasted from hgsql. Bug fixes need to be
67 # back-ported!
66 # back-ported!
General Comments 0
You need to be logged in to leave comments. Login now