mirror of
https://github.com/minio/minio.git
synced 2025-01-11 15:03:22 -05:00
fix mysql config for native password authentication (#7436)
fixes #7430
This commit is contained in:
parent
16ba679103
commit
dd1d69ab5c
@ -205,11 +205,12 @@ func (target *MySQLTarget) Close() error {
|
||||
func NewMySQLTarget(id string, args MySQLArgs) (*MySQLTarget, error) {
|
||||
if args.DSN == "" {
|
||||
config := mysql.Config{
|
||||
User: args.User,
|
||||
Passwd: args.Password,
|
||||
Net: "tcp",
|
||||
Addr: args.Host.String() + ":" + args.Port,
|
||||
DBName: args.Database,
|
||||
User: args.User,
|
||||
Passwd: args.Password,
|
||||
Net: "tcp",
|
||||
Addr: args.Host.String() + ":" + args.Port,
|
||||
DBName: args.Database,
|
||||
AllowNativePasswords: true,
|
||||
}
|
||||
|
||||
args.DSN = config.FormatDSN()
|
||||
|
Loading…
Reference in New Issue
Block a user