Skip to content

Commit

Permalink
fix(s3): set default root path (close #2834)
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Dec 30, 2022
1 parent d1b9db3 commit 16e07ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions drivers/s3/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type Addition struct {

var config = driver.Config{
Name: "S3",
DefaultRoot: "/",
LocalSort: true,
CheckStatus: true,
}
Expand Down
5 changes: 3 additions & 2 deletions drivers/uss/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ type Addition struct {
}

var config = driver.Config{
Name: "USS",
LocalSort: true,
Name: "USS",
LocalSort: true,
DefaultRoot: "/",
}

func init() {
Expand Down

0 comments on commit 16e07ae

Please sign in to comment.