dvc status -c: confusing message when remote is unspecified
See original GitHub issueCurrent behavior
→ dvc status -c
WARNING: using obsoleted config format. Consider updating.
ERROR: failed to obtain data status - 'NoneType' object has no attribute 'path_info'
Having any troubles?. Hit us up at https://dvc.org/support, we are always happy to help!
Config contains just a single ssh remote section with an URL. There is no core section options defined in my config.
It couldn’t find the remote
option in missing [core]
and -r remotename
option was not specified.
Expected behaviour
→ dvc status -c
ERROR: you should specify default remote in [core] config section or pass its name via `-r` argument
dvc version
DVC version: 0.50.1+cc9411
Python version: 3.7.3
Platform: Linux-5.1.3-arch1-1-ARCH-x86_64-with-arch-Arch-Linux
Binary: False
Cache: reflink - False, hardlink - True, symlink - True
Filesystem type (cache directory): ('ext4', '/dev/nvme0n1p5')
Filesystem type (workspace): ('ext4', '/dev/nvme0n1p5')
I use dvc from master
.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:11 (11 by maintainers)
Top Results From Across the Web
status | Data Version Control - DVC
If no differences are detected, dvc status prints Data and pipelines are up to date , or Cache and remote 'myremote' are in...
Read more >Debugging with GDB - sourceware.org
Tracepoints: Debugging remote targets non-intrusively ... Exit with nonzero status if an error occurs in executing the GDB commands in the command files....
Read more >The DataLad Handbook
datalad status untracked: books/progit.pdf (file). Let's give datalad save precisely this file by specifying its path after the commit message:.
Read more >Fisher™ FIELDVUE™ DVC6200p Digital Valve Controller
The 6 scfh requirement can be met by low bleed relay B and C when used with up to 5.2 ... binary messages...
Read more >US7085814B1 - Data driven remote device control model with ...
The adapter maps application calls to the interface into network data messages according to service protocols of the controlled device.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is solving the issue for me:
@pared in my case there is no
core.cloud
specified in the config file. Just an empty[core]
section is enough to reproduce. Orcore.analytics
as it was in debug session some comments before.But anyway I like the solution with dropping the legacy checks 😃. So never mind.