commit | 212488c2a168f36da88654d25c2f3af7ad804997 | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Thu Jan 30 11:01:13 2014 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Thu Jan 30 11:01:13 2014 +0000 |
tree | 7de41ba947600450023d6a399c4f4cb178d268bd | |
parent | 5d20131217850177d61fb9885a25d4a893b98950 [diff] | |
parent | 7741cd6d0360b126508872aabd0b31f551787519 [diff] |
Merge "Remove super call in overloaded close()"
diff --git a/tempest/common/glance_http.py b/tempest/common/glance_http.py index 2ce05ee..d8afab3 100644 --- a/tempest/common/glance_http.py +++ b/tempest/common/glance_http.py
@@ -354,7 +354,7 @@ # file. Closing socket too soon will cause response # reads to fail with socket IO error 'Bad file descriptor'. self.sock = None - super(VerifiedHTTPSConnection, self).close() + httplib.HTTPSConnection.close(self) class ResponseBodyIterator(object):