Method: ActiveRecord::PGExtensions::PostgreSQLAdapter#with_statement_timeout

Defined in:
lib/active_record/pg_extensions/postgresql_adapter.rb

#with_statement_timeout(timeout = nil) ⇒ Object

@deprecated: manage the transaction yourself and set statement_timeout directly

otherwise, if you’re already in a transaction, or you nest with_statement_timeout, the value will unexpectedly “stick” even after the block returns


271
272
273
274
275
276
277
278
# File 'lib/active_record/pg_extensions/postgresql_adapter.rb', line 271

def with_statement_timeout(timeout = nil)
  timeout = 30 if timeout.nil? || timeout == true

  transaction do
    self.statement_timeout = timeout
    yield
  end
end