Replies: 1 comment 10 replies
-
Looking at the last item in the traceback you provided (which looks like it is truncated) it would seem you are trying to use asyncio with thick mode? That isn't going to work for you! If you are able to supply a small test case in Django that demonstrates the issue, though, I'll take a look. You shouldn't get a double free or corruption error! |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue: django use oracledb and enable thick mode,but sometimes Aborted,Please help me,thanks~
1、django 5.0.X, python 3.11.X ,daphne asgi run service
DATABASES in setting.py:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.oracle",
"NAME": XX,
"USER": XX,
"PASSWORD": XX,
"HOST": XX,
"PORT": XX,
}
}
oracledb.init_oracle_client()
2、OS : debian linux
3、oracle: instantclient_21_13
4、python-oracledb : 2.1.1
5、log:
double free or corruption (out)
Fatal Python error: Aborted
Beta Was this translation helpful? Give feedback.
All reactions