-
-
Notifications
You must be signed in to change notification settings - Fork 90
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
SVN finds a lot of irrelevant repositories #828
Labels
Comments
Can you have a look at 35ac8db to see if that is the cause |
This commit looks ok (The bug reproduces after clicking on item log provider). I think it's tempfs, looks like it searches in |
Yeah i can see the proc calls, strange. |
A hotfix: diff --git a/src/source_control_manager.ts b/src/source_control_manager.ts
index e16cefc..477973a 100644
--- a/src/source_control_manager.ts
+++ b/src/source_control_manager.ts
@@ -141,7 +141,7 @@ export class SourceControlManager implements IDisposable {
);
const onPossibleSvnRepositoryChange = filterEvent(
onWorkspaceChange,
- uri => !this.getRepository(uri)
+ uri => uri.scheme === "file" && !this.getRepository(uri)
);
onPossibleSvnRepositoryChange(
this.onPossibleSvnRepositoryChange, What was happening is that the whole root was scanned for the depth 4. |
Yanpas
added a commit
to Yanpas/svn-scm
that referenced
this issue
Feb 19, 2020
JohnstonCode
pushed a commit
that referenced
this issue
Feb 19, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue
Steps to Reproduce
Don't know exact steps but seems this issue appeared recently, maybe after 2.7.1 or 2.7.2 , or maybe after vscode update.
SVN Output
Screenshots
The text was updated successfully, but these errors were encountered: