Skip to content

Commit

Permalink
BUG/MAJOR: cluster: fix autogenerated cluster username
Browse files Browse the repository at this point in the history
  • Loading branch information
mjuraga committed Apr 10, 2024
1 parent ce63b09 commit 9649a57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ func CreateClusterUser() (types.User, string, error) {
if err != nil {
return types.User{}, "", err
}
name = "dpapi-c" + name
name = "dpapi-c-" + name
log.Infof("Creating user %s for cluster connection", name)
user := types.User{
Name: name,
Expand Down

0 comments on commit 9649a57

Please sign in to comment.