]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- The psycopg2 ``.closed`` accessor is now consulted when determining
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 May 2014 15:56:19 +0000 (11:56 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 30 May 2014 16:01:07 +0000 (12:01 -0400)
if an exception is a "disconnect" error; ideally, this should remove
the need for any other inspection of the exception message to detect
disconnect, however we will leave those existing messages in place
as a fallback.   This should be able to handle newer cases like
"SSL EOF" conditions.  Pull request courtesy Dirk Mueller.
fixes #3021

doc/build/changelog/changelog_09.rst

index 98a11a00d3560f738023f9f6bffc26aa3f6144ff..633a3bddafed61c759b1b613aeb7702d2a0abea9 100644 (file)
 .. changelog::
     :version: 0.9.5
 
+    .. change::
+        :tags: bug, postgresql
+        :tickets: 3021
+        :versions: 1.0.0
+        :pullreq: github:87
+
+        The psycopg2 ``.closed`` accessor is now consulted when determining
+        if an exception is a "disconnect" error; ideally, this should remove
+        the need for any other inspection of the exception message to detect
+        disconnect, however we will leave those existing messages in place
+        as a fallback.   This should be able to handle newer cases like
+        "SSL EOF" conditions.  Pull request courtesy Dirk Mueller.
+
     .. change::
         :tags: bug, orm
         :tickets: 3060