Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freeze for a long time before upload #31

Open
menshikh-iv opened this issue Sep 22, 2018 · 5 comments
Open

Freeze for a long time before upload #31

menshikh-iv opened this issue Sep 22, 2018 · 5 comments

Comments

@menshikh-iv
Copy link

menshikh-iv commented Sep 22, 2018

wheelhouse_uploader freeze for a long time before upload file using python3 with Windows (Appveyor)

I use command python -m wheelhouse_uploader upload --no-ssl-check --local-folder=. gensim-wheels for uploading wheels, see build timings: https://ci.appveyor.com/project/piskvorky/gensim-wheels/build/1.0.112
26 minutes difference between python2 and python3 spent in wheelhouse_uploader call (but finally this finished successfully).

I also have older job: https://ci.appveyor.com/project/piskvorky/gensim-wheels/build/1.0.82 (Jul 6, 2018) with same issue, but this issue doesn't appear earlier https://ci.appveyor.com/project/piskvorky/gensim-wheels/build/1.0.76 (Mar 1, 2018), looks like regression in >=0.9.6

@matthew-brett
Copy link
Collaborator

@ogrisel - I have seen this too - here's an example of all the Mac uploads freezing:

https://travis-ci.org/scikit-image/scikit-image-wheels/builds/435612569

I have tried to replicate this locally, but failed.

@menshikh-iv - did you try downgrading to 0.9.5? Did it fix the problem?

jni added a commit to scikit-image/scikit-image-wheels that referenced this issue Oct 2, 2018
There appears to be a hanging issue in Python 3.4+:
ogrisel/wheelhouse-uploader#31
@menshikh-iv
Copy link
Author

@matthew-brett trying here: MacPython/gensim-wheels@598956c, I'll write results here after CI done.

@menshikh-iv
Copy link
Author

After downgrade to wheelhouse_uploader==0.9.5 I see error (Windows, Appveyor)

python -m wheelhouse_uploader upload --no-ssl-check --local-folder=.  gensim-wheels
C:\Python27\lib\site-packages\libcloud\httplib_ssl.py:249: UserWarning: SSL certificate verification is disabled, this can pose a security risk. For more information how to enable the SSL certificate verification, please visit the libcloud documentation.
  warnings.warn(libcloud.security.VERIFY_SSL_DISABLED_MSG)
Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 45, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 62, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 285, in get_container
    method='HEAD')
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 235, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 163, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 227, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 753, in request
    action = self.morph_action_hook(action)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 294, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 327, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 850, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 865, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 882, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 851, in request
    raise ssl.SSLError(str(e))
SSLError: ('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 45, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 62, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 285, in get_container
    method='HEAD')
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 235, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 163, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 227, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 753, in request
    action = self.morph_action_hook(action)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 294, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 327, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 850, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 865, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 882, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 851, in request
    raise ssl.SSLError(str(e))('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
SSLError: ('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
Traceback (most recent call last):
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 45, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 62, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 285, in get_container
    method='HEAD')
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 235, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 163, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 227, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 753, in request
    action = self.morph_action_hook(action)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 294, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 327, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 850, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 865, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 882, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 851, in request
    raise ssl.SSLError(str(e))
SSLError: ('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
Traceback (most recent call last):
  File "C:\Python27\lib\runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "C:\Python27\lib\runpy.py", line 72, in _run_code
    exec code in run_globals
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\__main__.py", line 3, in <module>
    main()
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\commandline.py", line 123, in main
    return handle_upload(options)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\commandline.py", line 106, in handle_upload
    uploader.upload(options.local_folder, options.container_name)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 56, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 56, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 56, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 45, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python27\lib\site-packages\wheelhouse_uploader\upload.py", line 62, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 285, in get_container
    method='HEAD')
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 235, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python27\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 163, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 227, in request
    raw=raw)
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 753, in request
    action = self.morph_action_hook(action)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 294, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack.py", line 327, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 850, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 865, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python27\lib\site-packages\libcloud\common\openstack_identity.py", line 882, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python27\lib\site-packages\libcloud\common\base.py", line 851, in request
    raise ssl.SSLError(str(e))
ssl.SSLError: ('[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:726)',)
Command exited with code 1

full log available here

@menshikh-iv
Copy link
Author

menshikh-iv commented Jan 16, 2019

@matthew-brett @ogrisel any updates about it (issue still here, happens in Travis too)?
full log

$ python -m wheelhouse_uploader upload --local-folder ${TRAVIS_BUILD_DIR}/wheelhouse/ --no-ssl-check gensim-wheels
No output has been received in the last 10m0s, this potentially indicates a stalled build or something wrong with the build itself.
Check the details on how to adjust your build configuration on: https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received
The build has been terminated

@menshikh-iv
Copy link
Author

Update: it raises an exception once, hope this will be helpful

python -m wheelhouse_uploader upload --no-ssl-check --local-folder=.  gensim-wheels
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 78, in _try_upload_once
    recently_uploaded=recently_uploaded)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 164, in _update_index
    package_filenames = self._get_package_filenames(driver, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 156, in _get_package_filenames
    objects = driver.list_container_objects(container)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 707, in list_container_objects
    ex_prefix=ex_prefix))
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 731, in iterate_container_objects
    params=params)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 78, in _try_upload_once
    recently_uploaded=recently_uploaded)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 164, in _update_index
    package_filenames = self._get_package_filenames(driver, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 156, in _get_package_filenames
    objects = driver.list_container_objects(container)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 707, in list_container_objects
    ex_prefix=ex_prefix))
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 731, in iterate_container_objects
    params=params)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 69, in _try_upload_once
    self._upload_files(filepaths, container_name)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 89, in _upload_files
    future.result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 425, in result
    return self.__get_result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 384, in __get_result
    raise self._exception
  File "C:\Python37\lib\concurrent\futures\thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 233, in upload_file
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 536, in request
    action = self.morph_action_hook(action)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 290, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 324, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 853, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 868, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 885, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BB19F0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 78, in _try_upload_once
    recently_uploaded=recently_uploaded)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 164, in _update_index
    package_filenames = self._get_package_filenames(driver, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 156, in _get_package_filenames
    objects = driver.list_container_objects(container)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 707, in list_container_objects
    ex_prefix=ex_prefix))
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 731, in iterate_container_objects
    params=params)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 69, in _try_upload_once
    self._upload_files(filepaths, container_name)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 89, in _upload_files
    future.result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 425, in result
    return self.__get_result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 384, in __get_result
    raise self._exception
  File "C:\Python37\lib\concurrent\futures\thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 233, in upload_file
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 536, in request
    action = self.morph_action_hook(action)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 290, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 324, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 853, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 868, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 885, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BB19F0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 63, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 536, in request
    action = self.morph_action_hook(action)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 290, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 324, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 853, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 868, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 885, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
C:\Python37\lib\site-packages\urllib3\connectionpool.py:847: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecureRequestWarning)
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 78, in _try_upload_once
    recently_uploaded=recently_uploaded)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 164, in _update_index
    package_filenames = self._get_package_filenames(driver, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 156, in _get_package_filenames
    objects = driver.list_container_objects(container)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 707, in list_container_objects
    ex_prefix=ex_prefix))
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 731, in iterate_container_objects
    params=params)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 69, in _try_upload_once
    self._upload_files(filepaths, container_name)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 89, in _upload_files
    future.result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 425, in result
    return self.__get_result()
  File "C:\Python37\lib\concurrent\futures\_base.py", line 384, in __get_result
    raise self._exception
  File "C:\Python37\lib\concurrent\futures\thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 233, in upload_file
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 536, in request
    action = self.morph_action_hook(action)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 290, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 324, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 853, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 868, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 885, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BB19F0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 63, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 536, in request
    action = self.morph_action_hook(action)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 290, in morph_action_hook
    self._populate_hosts_and_request_paths()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 324, in _populate_hosts_and_request_paths
    osa = osa.authenticate(**kwargs)  # may throw InvalidCreds
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 853, in authenticate
    return self._authenticate_2_0_with_api_key()
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 868, in _authenticate_2_0_with_api_key
    return self._authenticate_2_0_with_body(reqbody)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack_identity.py", line 885, in _authenticate_2_0_with_body
    method='POST')
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw)
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 80, in create_connection
    raise err
  File "C:\Python37\lib\site-packages\urllib3\util\connection.py", line 70, in create_connection
    sock.connect(sa)
TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 600, in urlopen
    chunked=chunked)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 343, in _make_request
    self._validate_conn(conn)
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 839, in _validate_conn
    conn.connect()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 301, in connect
    conn = self._new_conn()
  File "C:\Python37\lib\site-packages\urllib3\connection.py", line 168, in _new_conn
    self, "Failed to establish a new connection: %s" % e)
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x040001D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\Python37\lib\site-packages\urllib3\connectionpool.py", line 638, in urlopen
    _stacktrace=sys.exc_info()[2])
  File "C:\Python37\lib\site-packages\urllib3\util\retry.py", line 398, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x040001D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "C:\Python37\lib\runpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "C:\Python37\lib\runpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\__main__.py", line 3, in <module>
    main()
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\commandline.py", line 123, in main
    return handle_upload(options)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\commandline.py", line 106, in handle_upload
    uploader.upload(options.local_folder, options.container_name)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 57, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 57, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 57, in upload
    retry_on_error=retry_on_error - 1)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 46, in upload
    return self._try_upload_once(local_folder, container)
  File "C:\Python37\lib\site-packages\wheelhouse_uploader\upload.py", line 63, in _try_upload_once
    container = driver.get_container(container_name)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 287, in get_container
    method='HEAD')
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 237, in request
    raw=raw, cdn_request=cdn_request)
  File "C:\Python37\lib\site-packages\libcloud\storage\drivers\cloudfiles.py", line 165, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\openstack.py", line 223, in request
    raw=raw)
  File "C:\Python37\lib\site-packages\libcloud\common\base.py", line 603, in request
    headers=headers, stream=stream)
  File "C:\Python37\lib\site-packages\libcloud\http.py", line 213, in request
    verify=self.verification
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "C:\Python37\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "C:\Python37\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x040001D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
About to upload 2 files
Uploading .\gensim-3.7.0-cp37-cp37m-win32.whl [24.063 MB]
Uploading .\gensim-3.7.0.win32-py3.7.exe [24.510 MB]
Uploading metadata.json with 168 entries
HTTPSConnectionPool(host='storage101.ord1.clouddrive.com', port=443): Max retries exceeded with url: /v1/MossoCloudFS_0b708480-10bd-4a24-aa6a-8962747eddc4/gensim-wheels?format=json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03B6B670>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
About to upload 2 files
HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BB19F0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
HTTPSConnectionPool(host='identity.api.rackspacecloud.com', port=443): Max retries exceeded with url: /v2.0/tokens (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x03BE12D0>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
Command exited with code 1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants