We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When trying to publish my python artifacts with poetry, running poetry publish we run into timeouts:
poetry publish
- Uploading xxx-py3-none-win_amd64.whl 0% - Uploading xxx-py3-none-win_amd64.whl 100% HTTPSConnectionPool(host='artifacts.pp-intern.tools', port=443): Read timed out. (read timeout=15)
Tried to configure it. After some investigation I found the cause for this. Poetry uses library requests and there is a hardcoded 15s timeout in constants.py: https://github.com/python-poetry/poetry/blob/master/src/poetry/utils/constants.py
requests
Solution: Either increase this value (e.g. 60s), or make it configureable, maybe by an env:var or by some config value.
The text was updated successfully, but these errors were encountered:
Duplicate #6009.
Sorry, something went wrong.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Feature Request
When trying to publish my python artifacts with poetry, running
poetry publish
we run into timeouts:Tried to configure it. After some investigation I found the cause for this. Poetry uses library
requests
and there is a hardcoded 15s timeout in constants.py: https://github.com/python-poetry/poetry/blob/master/src/poetry/utils/constants.pySolution:
Either increase this value (e.g. 60s), or make it configureable, maybe by an env:var or by some config value.
The text was updated successfully, but these errors were encountered: