Skip to content

Commit bea114f

Browse files
authored
Merge pull request #1 from jgiannuzzi/username-limit
Change username limit to align with Aerospike server
2 parents 34a492e + abf0773 commit bea114f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aerospike.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ func new() *Aerospike {
4444
credsProducer := &credsutil.SQLCredentialsProducer{
4545
DisplayNameLen: 15,
4646
RoleNameLen: 15,
47-
UsernameLen: 100,
47+
// See https://www.aerospike.com/docs/guide/limitations.html
48+
UsernameLen: 63,
4849
Separator: "-",
4950
}
5051

0 commit comments

Comments
 (0)