Fix #55224 - use different cacheKeys per folder in FileIndexProvider

This commit is contained in:
Rob Lourens
2018-07-27 11:25:00 -07:00
parent ca35204e11
commit 866bc0aa4c
2 changed files with 32 additions and 7 deletions

View File

@@ -96,7 +96,8 @@ export class ExtHostSearch implements ExtHostSearchShape {
}
$clearCache(cacheKey: string): TPromise<void> {
// Only relevant to file index search
// Actually called once per provider.
// Only relevant to file index search.
return this._fileIndexSearchManager.clearCache(cacheKey);
}