remove caching for user extensions (#214415)

This commit is contained in:
Sandeep Somavarapu 2024-06-06 10:44:01 +02:00 committed by GitHub
parent b304df66db
commit d15da77349
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -515,7 +515,7 @@ export class ExtensionsScanner extends Disposable {
async scanExtensions(type: ExtensionType | null, profileLocation: URI, productVersion: IProductVersion): Promise<ILocalExtension[]> {
try {
const userScanOptions: ScanOptions = { includeInvalid: true, useCache: true, profileLocation, productVersion };
const userScanOptions: ScanOptions = { includeInvalid: true, profileLocation, productVersion };
let scannedExtensions: IScannedExtension[] = [];
if (type === null || type === ExtensionType.System) {
if (!this.scanAllExtensionPromise) {