-
Notifications
You must be signed in to change notification settings - Fork 96
Closed
Labels
Description
- What versions are you using?
oracledb 1.3.2
python 3.11
oracle db 19c
- Is it an error or a hang or a crash?
Warning
- What error(s) or behavior you are seeing?
sockets to connections that cannot be open (e.g. password is invalid) are closed automatically:
- Running
python -Wall runtests.py backends.oracle.tests.TransactionalTestswithcx-Oracle==8.3.0
$ python -Wall runtests.py backends.oracle.tests.TransactionalTests
Testing against Django installed in '/django/django' with up to 8 processes
Found 2 test(s).
Creating test database for alias 'default'...
Creating test user...
System check identified no issues (0 silenced).
..
----------------------------------------------------------------------
Ran 2 tests in 2.048s
OK
Destroying test database for alias 'default'...
Destroying test user...
Destroying test database tables...
- Running
python -Wall runtests.py backends.oracle.tests.TransactionalTestswithoracledb==1.3.2
python runtests.py backends.oracle.tests.TransactionalTests
Testing against Django installed in '/django/django' with up to 8 processes
Found 2 test(s).
Creating test database for alias 'default'...
Creating test user...
System check identified no issues (0 silenced).
.Exception ignored in: <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 38016), raddr=('127.0.0.1', 1521)>
Traceback (most recent call last):
File "/usr/local/lib/python3.10/traceback.py", line 236, in clear_frames
tb.tb_frame.clear()
ResourceWarning: unclosed <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 38016), raddr=('127.0.0.1', 1521)>
.
----------------------------------------------------------------------
Ran 2 tests in 1.860s
OK
Destroying test database for alias 'default'...
Destroying test user...
Destroying test database tables...
- Does your application call init_oracle_client()?
No.
- Include a runnable Python script that shows the problem.
See above. Please refer to the comments in django #15841 for more information.