Skip to content

Postgres encoding exception logged #793

Mike Rennie requested to merge (removed):issue793 into master

Adds template support allowing a database encoding to be specified. Defaults to unicode if none given.

Could be used as a fix for https://gitlab.com/charts/gitlab/issues/793. From my local testing, specifying the encoding eliminated the exceptions being logged.

For example, I set the encoding like so:

psql:
  host: xxx.xxx.xxx.xxx
  port: 55432
  database: gitlabhq_production
  encoding: utf8
  password: 
    secret: gitlab-postgres-secret
    key: postgres-password
  username: gitlab

Merge request reports