exp show
: unable to run in parallel with status
and diff
#6132
Labels
product: VSCode
Integration with VSCode extension
Bug Report
Description
In the vs code extension we use file watchers to trigger commands that provide data for the UI.
status
,list
anddiff
are run on any change in the workspace.exp show
is run whenever there is a change to.git/refs/exps
. If these four commands run at the same time thenexp show
will always fail.Note: we have excluded
.git/refs/exps
from the base watcher to work around this issue.Reproduce
Run
status
,list
,diff
andexp show
at exactly the same time.Expected
Read only commands should be able to run concurrently or wait for the repo to be released before running.
Environment information
Output of
dvc doctor
:Additional Information (if any):
This particular issue is not a show stopper for us as we can work around but the larger issue of not being able to run read only command concurrently is definitely a problem that we need addressed.
The text was updated successfully, but these errors were encountered: