It's been time since @killface007 had updated this.
Right now only QNAP Storage drivers use six.moves.http_client's HTTPSConnection.
cinder/volume/drivers/qnap.py 34 from six.moves import http_client 979 connection = http_client.HTTPSConnection(management_ip, 983 connection = http_client.HTTPSConnection(management_ip, 987 http_client.HTTPConnection(management_ip, management_port)) 1006 connection = http_client.HTTPSConnection(nas_ip, 1010 connection = http_client.HTTPSConnection( 1013 connection = http_client.HTTPConnection(nas_ip, self.port)
Rest of the files refer only HTTP codes, which I presume is safe.
It's been time since @killface007 had updated this.
Right now only QNAP Storage drivers use six.moves. http_client' s HTTPSConnection.
cinder/ volume/ drivers/ qnap.py HTTPSConnection (management_ ip, HTTPSConnection (management_ ip, HTTPConnection( management_ ip, management_port)) HTTPSConnection (nas_ip, HTTPSConnection ( HTTPConnection( nas_ip, self.port)
34 from six.moves import http_client
979 connection = http_client.
983 connection = http_client.
987 http_client.
1006 connection = http_client.
1010 connection = http_client.
1013 connection = http_client.
Rest of the files refer only HTTP codes, which I presume is safe.