We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26e9a8d commit cf34d7cCopy full SHA for cf34d7c
src/vs/platform/extensionManagement/node/extensionsWatcher.ts
@@ -65,11 +65,7 @@ export class ExtensionsWatcher extends Disposable {
65
this.extensionsProfileWatchDisposables.deleteAndDispose(profile.id);
66
return this.removeExtensionsFromProfile(profile.extensionsResource);
67
}));
68
- } catch (error) {
69
- this.logService.error(error);
70
- }
71
72
- try {
73
if (added.length) {
74
await Promise.all(added.map(profile => {
75
this.extensionsProfileWatchDisposables.set(profile.id, combinedDisposable(
@@ -82,6 +78,7 @@ export class ExtensionsWatcher extends Disposable {
82
78
}
83
79
} catch (error) {
84
80
this.logService.error(error);
81
+ throw error;
85
86
87
0 commit comments