-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Local config user respected in "dvc pull" but not "dvc list" #4604
Comments
After diving into the source code, I think I found why this occurs. The I think a fix to this issue would involve having some way to run Also, the implementation of |
Sorry if I misunderstand. This issue has been moved to done 1.5 years ago, currently it is still a problem though (#8016). What is the current status and planning of this issue? |
@rick-van-veen the issue is still open and there is currently no estimate on when the core team will be able to get to it. The in-progress/done status messages are just auto-generated from the github project boards, and they mean that some planned work related to this issue (whether it was on internal prerequisites or separate but related issues) was done in the given sprint. |
@pmrowla Thanks! Just want to add my +1 for this issue with this comment then :-) |
This issue is a major blocker for us because it makes DVC useless for managing data in private data registries. See #8544. This issue has had almost no activity since its creation more than 2 years ago. Any chance it gets prioritized soon? |
To elaborate the blocker regarding private data registries a bit: In the DVC documentation on
We're in the process of building private data registries (A) on which a downstream project (B) can depend via This behavior differs from what is described in the documentation and prevents importing data via I believe DVC should merge the configs while pulling (and perhaps other operations like |
list now supports |
Bug Report
My computer username (joncrall) is different than my credentials that I use to access the dvc remote cache. In my local config I've modified the dvc remote to register my appropriate remote username (jon.crall).
Running:
I get:
and then there is a big long
paramiko.ssh_exception.SSHException
that ultimately stems from the fact that it did not pick up my usename in my local config, which looks like this:For reference my normal dvc/config looks like:
However, if I use something like:
dvc pull -v
it worksAlso, if I modify my global $HOME/.cache/dvc/config to include the custom "user" it works.
Please provide information about your setup
Output of
dvc version
:I've also tested on pypi latest of 1.7.4
I'm currently trying to trace where local credentials are loaded in the pull command and see if I can port that to the list command, but I figured Id make an issue and see if this is a known bug first.
The text was updated successfully, but these errors were encountered: