-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Make more informative error messages when UploadError #3813
Labels
Comments
espdev
added
kind/feature
Feature requests/implementations
status/triage
This issue needs to be triaged
labels
Mar 20, 2021
seems like an easy merge request for anyone who's interested in this |
Poking this old issue. I am now getting:
On the main public PyPi repository. No idea if it's PyPi failing, or some issue on my local connection. |
dimbleby
added a commit
to dimbleby/poetry
that referenced
this issue
Sep 22, 2024
preserve the underlying exception from requests, so that it is available when running with `--verbose` fixes python-poetry#3813, superseds python-poetry#7004
dimbleby
added a commit
to dimbleby/poetry
that referenced
this issue
Sep 22, 2024
preserve the underlying exception from requests, so that it is available when running with `--verbose` fixes python-poetry#3813, supersedes python-poetry#7004
radoering
pushed a commit
to dimbleby/poetry
that referenced
this issue
Sep 29, 2024
preserve the underlying exception from requests, so that it is available when running with `--verbose` fixes python-poetry#3813, supersedes python-poetry#7004
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Why do you hide the error info when ConnectionError occurred?
poetry/poetry/publishing/uploader.py
Lines 39 to 52 in b1d380e
The message is absolutely not informative.
ConnectionError
message is hiddenIt is impossible to understand what happened. In my case I'm getting
('Connection aborted.', ConnectionAbortedError(10053))
error with my private repository. I could not understand what was happening until I added debug prints to poetry code.The text was updated successfully, but these errors were encountered: