diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-07-01 18:27:50 +0200 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-07-01 18:27:50 +0200 |
commit | 6b101abaef25dce40f3d7c8f58e00924d7a7f7bb (patch) | |
tree | d98a928a748b4085b9364c272adabcc7a864d263 /config/database.yml.postgresql | |
parent | 4e1f9e2b8b14eeaabc8f2a779acc8c9d94f538f5 (diff) | |
download | gitlab-ce-6b101abaef25dce40f3d7c8f58e00924d7a7f7bb.tar.gz |
Remove 'socket' example PostgreSQL parameter
The ActiveRecord PostgreSQL adapter does not have a 'socket' option;
see:
https://github.com/rails/rails/blob/4-1-2/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L20
Diffstat (limited to 'config/database.yml.postgresql')
-rw-r--r-- | config/database.yml.postgresql | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/config/database.yml.postgresql b/config/database.yml.postgresql index 66960551cfd..7067e0fe402 100644 --- a/config/database.yml.postgresql +++ b/config/database.yml.postgresql @@ -10,7 +10,6 @@ production: # password: # host: localhost # port: 5432 - # socket: /tmp/postgresql.sock # # Development specific @@ -22,7 +21,6 @@ development: pool: 5 username: postgres password: - # socket: /tmp/postgresql.sock # # Staging specific @@ -34,7 +32,6 @@ staging: pool: 5 username: postgres password: - # socket: /tmp/postgresql.sock # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". @@ -46,4 +43,3 @@ test: &test pool: 5 username: postgres password: - # socket: /tmp/postgresql.sock |