mysqldump password requires = on argument
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
cc3b630359
commit
66a7881259
2
tasks.go
2
tasks.go
@ -124,7 +124,7 @@ func (t JobTaskMySQL) GetPreTask() ExecutableTask {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if t.Password != "" {
|
if t.Password != "" {
|
||||||
command = append(command, "--password", t.Password)
|
command = append(command, fmt.Sprintf("--password=%s", t.Password))
|
||||||
}
|
}
|
||||||
|
|
||||||
if t.NoTablespaces {
|
if t.NoTablespaces {
|
||||||
|
@ -160,7 +160,7 @@ func TestJobTaskSql(t *testing.T) {
|
|||||||
},
|
},
|
||||||
validationErr: nil,
|
validationErr: nil,
|
||||||
preBackup: "mysqldump --result-file ./simple.sql --host host --port 3306" +
|
preBackup: "mysqldump --result-file ./simple.sql --host host --port 3306" +
|
||||||
" --user user --password pass --no-tablespaces db table1 table2",
|
" --user user --password=pass --no-tablespaces db table1 table2",
|
||||||
postBackup: "",
|
postBackup: "",
|
||||||
preRestore: "",
|
preRestore: "",
|
||||||
postRestore: "mysql --host host --user user --password pass < ./simple.sql",
|
postRestore: "mysql --host host --user user --password pass < ./simple.sql",
|
||||||
|
Loading…
Reference in New Issue
Block a user