We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d64603e commit 3816bb0Copy full SHA for 3816bb0
internal/pgbouncer/reconcile.go
@@ -60,9 +60,9 @@ func Secret(ctx context.Context,
60
verifier := string(inSecret.Data[verifierSecretKey])
61
62
// If the password is empty, generate a new one.
63
- // The user may not have provided a SCRAM verifier.
+ // Ignore the verifier for now.
64
if err == nil && len(password) == 0 {
65
- password, verifier, err = generatePassword()
+ password, _, err = generatePassword()
66
err = errors.WithStack(err)
67
}
68
0 commit comments