Merge pull request #587 from credativ/azure-ff-fix

Avoid parsing error from bogus Azure Flexible Server custom GUC
This commit is contained in:
Joe Adams 2022-02-09 15:30:32 -05:00 committed by GitHub
commit 3880df4f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ func querySettings(ch chan<- prometheus.Metric, server *Server) error {
//
// NOTE: If you add more vartypes here, you must update the supported
// types in normaliseUnit() below
query := "SELECT name, setting, COALESCE(unit, ''), short_desc, vartype FROM pg_settings WHERE vartype IN ('bool', 'integer', 'real');"
query := "SELECT name, setting, COALESCE(unit, ''), short_desc, vartype FROM pg_settings WHERE vartype IN ('bool', 'integer', 'real') AND name != 'sync_commit_cancel_wait';"
rows, err := server.db.Query(query)
if err != nil {