Commit 6b101aba authored by Jacob Vosmaer's avatar Jacob Vosmaer

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
parent 4e1f9e2b
...@@ -10,7 +10,6 @@ production: ...@@ -10,7 +10,6 @@ production:
# password: # password:
# host: localhost # host: localhost
# port: 5432 # port: 5432
# socket: /tmp/postgresql.sock
# #
# Development specific # Development specific
...@@ -22,7 +21,6 @@ development: ...@@ -22,7 +21,6 @@ development:
pool: 5 pool: 5
username: postgres username: postgres
password: password:
# socket: /tmp/postgresql.sock
# #
# Staging specific # Staging specific
...@@ -34,7 +32,6 @@ staging: ...@@ -34,7 +32,6 @@ staging:
pool: 5 pool: 5
username: postgres username: postgres
password: password:
# socket: /tmp/postgresql.sock
# Warning: The database defined as "test" will be erased and # Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake". # re-generated from your development database when you run "rake".
...@@ -46,4 +43,3 @@ test: &test ...@@ -46,4 +43,3 @@ test: &test
pool: 5 pool: 5
username: postgres username: postgres
password: password:
# socket: /tmp/postgresql.sock
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment