Update the username length for postgresql

This commit is contained in:
Brian Kassouf 2017-04-27 23:02:33 -07:00
parent 9a07675d86
commit 43cf619871
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ func New() (interface{}, error) {
connProducer.Type = postgreSQLTypeName connProducer.Type = postgreSQLTypeName
credsProducer := &credsutil.SQLCredentialsProducer{ credsProducer := &credsutil.SQLCredentialsProducer{
DisplayNameLen: 4, DisplayNameLen: 10,
UsernameLen: 16, UsernameLen: 63,
} }
dbType := &PostgreSQL{ dbType := &PostgreSQL{