list of oracle "connection lost" errors
[ticket:2388]
is on this driver and how SQLAlchemy's
implementation should adapt. [ticket:2347]
+- oracle
+ - [bug] Added ORA-03135 to the never ending
+ list of oracle "connection lost" errors
+ [ticket:2388]
+
- Py3K
- [bug] Fixed inappropriate usage of util.py3k
flag and renamed it to util.py3k_warning, since
# ORA-00028: your session has been killed
# ORA-03114: not connected to ORACLE
# ORA-03113: end-of-file on communication channel
+ # ORA-03135: connection lost contact
# ORA-01033: ORACLE initialization or shutdown in progress
- return error.code in (28, 3114, 3113, 1033)
+ # TODO: Others ?
+ return error.code in (28, 3114, 3113, 3135, 1033)
else:
return False