Follow up: Fixed issue #1080 - Scheduler won't start because of missing DB connection on PostgreSQL 9.2.18.
This commit is contained in:
parent
d5161405c0
commit
4a12788e04
1 changed files with 2 additions and 0 deletions
|
@ -12,8 +12,10 @@ class Scheduler < ApplicationModel
|
|||
Thread.abort_on_exception = true
|
||||
|
||||
# reconnect in case db connection is lost
|
||||
# See issue #1080
|
||||
begin
|
||||
ActiveRecord::Base.connection.reconnect!
|
||||
rescue PG::UnableToSend => e # rubocop:disable Lint/HandleExceptions
|
||||
rescue => e
|
||||
logger.error "Can't reconnect to database #{e.inspect}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue