Skip to content

Commit

Permalink
Merge pull request #7480 from dolthub/db/fix
Browse files Browse the repository at this point in the history
[no-release-notes] /go/performance/utils/sysbench_runner/profile.go: fix mkdir temp
  • Loading branch information
coffeegoddd authored Feb 12, 2024
2 parents 0996ca1 + 3b678c5 commit 02e9f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/performance/utils/sysbench_runner/profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func ProfileDolt(ctx context.Context, config *Config, serverConfig *ServerConfig
}

func profileTest(ctx context.Context, test *Test, config *Config, serverConfig *ServerConfig, serverParams []string, testRepo, profileDir string) (string, error) {
profilePath, err := os.MkdirTemp("", test.Name)
profilePath, err := os.MkdirTemp("", filepath.Base(test.Name))
if err != nil {
return "", err
}
Expand Down

0 comments on commit 02e9f99

Please sign in to comment.