Skip to content

Commit

Permalink
Remove support for Oracle as a backend database
Browse files Browse the repository at this point in the history
This has not really been supported for a long time, nothing tests it and no
sites are known to be making use of it.
  • Loading branch information
jrha authored and tofu-rocketry committed May 1, 2024
1 parent 0772a1f commit ec95a8b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 107 deletions.
6 changes: 0 additions & 6 deletions apel/db/apeldb.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ def __new__(cls, backend, host, port, username, pwd, db):
except ImportError:
logger.info('Cannot import mysql backend')

try:
from apel.db.backends.oracle import ApelOracleDb
BACKENDS['oracle'] = ApelOracleDb
except ImportError:
logger.debug('Cannot import oracle backend')

if backend not in BACKENDS.keys():
raise ApelDbException('Unknown backend: %s' % (backend))

Expand Down
101 changes: 0 additions & 101 deletions apel/db/backends/oracle.py

This file was deleted.

0 comments on commit ec95a8b

Please sign in to comment.