Skip to content

Commit

Permalink
Update cmd/conformance/aws/main.go
Browse files Browse the repository at this point in the history
Co-authored-by: Al Cutter <[email protected]>
  • Loading branch information
phbnf and AlCutter authored Nov 18, 2024
1 parent e4b66c0 commit 635c61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/conformance/aws/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func storageConfigFromFlags() aws.Config {
klog.Exit("--db_password must be set")
}

var dbEndpoint string = fmt.Sprintf("%s:%d", *dbHost, *dbPort)
dbEndpoint := fmt.Sprintf("%s:%d", *dbHost, *dbPort)

dsn := fmt.Sprintf("%s:%s@tcp(%s)/%s?allowCleartextPasswords=true",
*dbUser, *dbPassword, dbEndpoint, *dbName,
Expand Down

0 comments on commit 635c61f

Please sign in to comment.