Skip to content

Commit

Permalink
feat(core): fix up host path
Browse files Browse the repository at this point in the history
  • Loading branch information
hkdeman committed Oct 4, 2024
1 parent a3a26e8 commit b6287f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/mysql/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func DB(config *engine.PluginConfig) (*gorm.DB, error) {

for _, record := range config.Credentials.Advanced {
switch record.Key {
case portKey, charsetKey, parseTimeKey, locKey, allowClearTextPasswordsKey:
case portKey, charsetKey, parseTimeKey, locKey, allowClearTextPasswordsKey, hostPathKey:
continue
default:
params.Add(record.Key, fmt.Sprintf("%v", record.Value))
Expand Down

0 comments on commit b6287f0

Please sign in to comment.