##// 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 class sqlindexapi(indexapi.indexapi):
60 60 retry = 3
61 61 while True:
62 62 try:
63 self.sqlconn = mysql.connector.connect(
64 force_ipv6=True, **self.sqlargs)
63 self.sqlconn = mysql.connector.connect(**self.sqlargs)
65 64
66 65 # Code is copy-pasted from hgsql. Bug fixes need to be
67 66 # back-ported!
General Comments 0
You need to be logged in to leave comments. Login now