Skip to content
Snippets Groups Projects
Commit e3cdf7b2 authored by Giuseppe Lo Presti's avatar Giuseppe Lo Presti
Browse files

[DB layer] added two more Oracle error codes

The added codes appeared in production (with the CASTOR Nameserver)
during a network incident with the Oracle Clusterware.
parent dae0e62d
No related branches found
No related tags found
No related merge requests found
...@@ -319,11 +319,13 @@ bool OcciStmt::connShouldBeClosed(const oracle::occi::SQLException &ex) { ...@@ -319,11 +319,13 @@ bool OcciStmt::connShouldBeClosed(const oracle::occi::SQLException &ex) {
switch(ex.getErrorCode()) { switch(ex.getErrorCode()) {
case 28: case 28:
case 492:
case 1003: case 1003:
case 1008: case 1008:
case 1012: case 1012:
case 1033: case 1033:
case 1089: case 1089:
case 2051:
case 2392: case 2392:
case 2396: case 2396:
case 2399: case 2399:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment