When frontend authentication succeeds with clear text password and md5
authentication, message is out with log priority LOG. This floods
Pgpool-II log on busy systems. To fix this, downgrade the LOG message
to DEBUG1. Note that CERT auth related log level is still
LOG. Downgrading it causes regression 024 and 029 failure.
Discussion:
https://www.pgpool.net/mantisbt/view.php?id=606
https://www.pgpool.net/pipermail/pgpool-general/2020-April/007064.html
(errmsg("clear text authentication failed"),
errdetail("password does not match")));
}
- ereport(LOG,
+ ereport(DEBUG1,
(errmsg("clear text authentication successful with frontend")));
if (frontend->passwordMapping->pgpoolUser.passwordType == PASSWORD_TYPE_AES)
(errmsg("md5 authentication failed"),
errdetail("password does not match")));
}
- ereport(LOG,
+ ereport(DEBUG1,
(errmsg("md5 authentication successful with frontend")));
frontend->frontend_authenticated = true;