Parcourir la source

Better string for reconnect

Andrew Kane il y a 8 ans
Parent
commit
d329015c02
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      lib/blazer/adapters/sql_adapter.rb

+ 1 - 1
lib/blazer/adapters/sql_adapter.rb

@@ -34,7 +34,7 @@ module Blazer
         rescue => e
           error = e.message.sub(/.+ERROR: /, "")
           error = Blazer::TIMEOUT_MESSAGE if Blazer::TIMEOUT_ERRORS.any? { |e| error.include?(e) }
-          reconnect if error.include?("can't get socket descriptor")
+          reconnect if error.include?("PG::ConnectionBad")
         end
 
         [columns, rows, error]