Comment 67 for bug 1188189

Revision history for this message
Ibad Khan (ik-ibadkhan) wrote :

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.