Skip to content

Commit

Permalink
delete reaping frequency from the db config
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jan 5, 2012
1 parent 07f187b commit f63fff6
Showing 1 changed file with 6 additions and 4 deletions.
Expand Up @@ -10,12 +10,14 @@ module ActiveRecord
module ConnectionHandling
# Establishes a connection to the database that's used by all Active Record objects
def postgresql_connection(config) # :nodoc:
config = config.symbolize_keys
conn_params = config.symbolize_keys

# Forward any unused config params to PGconn.connect.
conn_params = config.except(:statement_limit, :encoding, :min_messages,
:schema_search_path, :schema_order,
:adapter, :pool, :wait_timeout)
[:statement_limit, :encoding, :min_messages, :schema_search_path,
:schema_order, :adapter, :pool, :wait_timeout,
:reaping_frequency].each do |key|
conn_params.delete key
end
conn_params.delete_if { |k,v| v.nil? }

# Map ActiveRecords param names to PGs.
Expand Down

0 comments on commit f63fff6

Please sign in to comment.