1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-08-01 15:19:14 +00:00

fix unix_socket

This commit is contained in:
sniper-py 2019-12-02 16:37:20 +08:00
parent 09e170b7d5
commit 67c2c2512c

View File

@ -478,11 +478,13 @@ Please choose a way to initialize seafile databases:
def check_mysql_user(self, user, password, host=None, unix_socket=None):
print('\nverifying password of user %s ... ' % user, end=' ')
kwargs = dict(host=host or self.mysql_host,
port=self.mysql_port,
kwargs = dict(port=self.mysql_port,
user=user,
passwd=password,
unix_socket=unix_socket)
passwd=password)
if unix_socket:
kwargs['unix_socket'] = unix_socket
else:
kwargs['host'] = host or self.mysql_host
try:
conn = pymysql.connect(**kwargs)