diff options
author | Tim Burke <tim.burke@gmail.com> | 2018-06-22 16:49:03 -0700 |
---|---|---|
committer | Tim Burke <tim.burke@gmail.com> | 2018-11-09 09:55:30 -0800 |
commit | 411ef48e5bca1ed66a2e4dd7ecd8695e2bf6c94e (patch) | |
tree | 39b0b0e6f4626135e374d2943392ecb90a4cf2c4 /tests/functional/test_swiftclient.py | |
parent | 9acdfe0b460048420551bb84fb3cf41fb1e4a67e (diff) | |
download | python-swiftclient-411ef48e5bca1ed66a2e4dd7ecd8695e2bf6c94e.tar.gz |
Stop leaking quite so many connections
While investigating the failures when you move func tests to py3, I
noticed a whole bunch of
ResourceWarning: unclosed <socket.socket ...>
noise. This should fix it.
While we're at it, make get_capabilities less stupid.
Change-Id: I3913e9334090b04a78143e0b70f621aad30fc642
Related-Change: I86d24104033b490a35178fc504d88c1e4a566628
Diffstat (limited to 'tests/functional/test_swiftclient.py')
-rw-r--r-- | tests/functional/test_swiftclient.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/functional/test_swiftclient.py b/tests/functional/test_swiftclient.py index 0380d96..1d76a8d 100644 --- a/tests/functional/test_swiftclient.py +++ b/tests/functional/test_swiftclient.py @@ -108,6 +108,7 @@ class TestFunctional(unittest.TestCase): self.conn.delete_container(container) except swiftclient.ClientException: pass + self.conn.close() def _check_account_headers(self, headers): headers_to_check = [ |