Opened 6 months ago

Closed 6 months ago

#36346 closed Bug (fixed)

Threaded option not supported by oracle python driver.

Reported by: Suraj Shaw Owned by: Rand01ph
Component: Documentation Version: 5.2
Severity: Normal Keywords: Oracle
Cc: Suraj Shaw, David Bogar Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

Support for threaded option has been desupported from python-oracledb 2.0 and higher. Now threading is always used. Also the minimum version of python-oracledb supported by django is 2.3.0. So setting the threaded option of Oracle database configuration raises connect() got an unexpected keyword argument 'threaded.

So it needs to be removed from the documentation.https://docs.djangoproject.com/en/5.2/ref/databases/#threaded-option

For more information please refer to this link https://python-oracledb.readthedocs.io/en/latest/api_manual/deprecations.html#desupported-2-0

Change History (6)

comment:1 by Simon Charette, 6 months ago

Easy pickings: set
Triage Stage: UnreviewedAccepted

comment:2 by Rand01ph, 6 months ago

Owner: set to Rand01ph
Status: newassigned

comment:3 by Rand01ph, 6 months ago

Has patch: set

The issue has been resolved as described, and the solution can be found at: https://github.com/django/django/pull/19413

comment:4 by David Bogar, 6 months ago

Triage Stage: AcceptedReady for checkin

Appears correct based on cited Oracle DB docs.

comment:5 by David Bogar, 6 months ago

Cc: David Bogar added

comment:6 by GitHub <noreply@…>, 6 months ago

Resolution: fixed
Status: assignedclosed

In 3babda7:

Fixed #36346 -- Removed outdated section about the threaded option in Oracle driver.

Note: See TracTickets for help on using tickets.
Back to Top