Skip to content

Commit

Permalink
BugFix: fix crossStorage load issue (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloon1995 authored Sep 3, 2024
1 parent bf3b607 commit 79a6915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/paramtable/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func (p *MinioConfig) initBackupRootPath() {
}

func (p *MinioConfig) initCrossStorage() {
crossStorage := p.Base.LoadWithDefault("backup.crossStorage", "false")
crossStorage := p.Base.LoadWithDefault("minio.crossStorage", "false")
var err error
p.CrossStorage, err = strconv.ParseBool(crossStorage)
if err != nil {
Expand Down

0 comments on commit 79a6915

Please sign in to comment.