-
Notifications
You must be signed in to change notification settings - Fork 1.2k
RemoteNotSpecifiedInExternalRepoError: dont pass cause of exception #2854
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
Conversation
dvc/exceptions.py
Outdated
@@ -333,12 +333,11 @@ class CollectCacheError(DvcException): | |||
|
|||
|
|||
class RemoteNotSpecifiedInExternalRepoError(DvcException): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
class RemoteNotSpecifiedInExternalRepoError(DvcException): | |
class NoRemoteInExternalRepoError(DvcException): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Thanks @pared ! π |
Oops I didn't mean to approve my review haha sorry. @pared please check my questions in #2854 (review) |
@jorgeorpinel Oh, sorry about that. πI'm sure @pared will address your comments. π |
β Have you followed the guidelines in the Contributing to DVC list?
π Check this box if this PR does not require documentation updates, or if it does and you have created a separate PR in dvc.org with such updates (or at least opened an issue about it in that repo). Please link below to your PR (or issue) in the dvc.org repo.
β Have you checked DeepSource, CodeClimate, and other sanity checks below? We consider their findings recommendatory and don't expect everything to be addressed. Please review them carefully and fix those that actually improve code or fix bugs.
Thank you for the contribution - we'll try to review it as soon as possible. π
Related to #2711
Original solution (#2777) was passing
cause
of exception resulting in obscure error message:https://asciinema.org/a/283668
For the sake of UI we agreed not to pass the cause, so that we don't end up with this long message.
https://asciinema.org/a/283669