From 2b5b85599c7dd3cf03480055f841ad8c9404fcf2 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 29 Nov 2015 20:33:36 +0530 Subject: [PATCH] database.yml: drop the `"` characters from the template --- assets/runtime/config/gitlabhq/database.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/runtime/config/gitlabhq/database.yml b/assets/runtime/config/gitlabhq/database.yml index 78fd2baa..018d28a3 100644 --- a/assets/runtime/config/gitlabhq/database.yml +++ b/assets/runtime/config/gitlabhq/database.yml @@ -2,14 +2,14 @@ # PRODUCTION # production: - adapter: "{{DB_ADAPTER}}" - encoding: "{{DB_ENCODING}}" - collation: "utf8_general_ci" + adapter: {{DB_ADAPTER}} + encoding: {{DB_ENCODING}} + collation: utf8_general_ci reconnect: false - database: "{{DB_NAME}}" - host: "{{DB_HOST}}" + database: {{DB_NAME}} + host: {{DB_HOST}} port: {{DB_PORT}} - username: "{{DB_USER}}" + username: {{DB_USER}} password: "{{DB_PASS}}" pool: {{DB_POOL}}