Skip to content

Commit

Permalink
Merge pull request #1 from jgiannuzzi/username-limit
Browse files Browse the repository at this point in the history
Change username limit to align with Aerospike server
  • Loading branch information
jgiannuzzi authored May 22, 2020
2 parents 34a492e + abf0773 commit bea114f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aerospike.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ func new() *Aerospike {
credsProducer := &credsutil.SQLCredentialsProducer{
DisplayNameLen: 15,
RoleNameLen: 15,
UsernameLen: 100,
// See https://www.aerospike.com/docs/guide/limitations.html
UsernameLen: 63,
Separator: "-",
}

Expand Down

0 comments on commit bea114f

Please sign in to comment.