Skip to content

Commit 5ab754e

Browse files
author
Benjamin Pasero
committed
Linux: ENOSPC error message tweak
1 parent 3817c89 commit 5ab754e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/services/files/electron-browser/fileService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class FileService implements IFileService {
124124
// Detect if we run into ENOSPC issues
125125
if (msg.indexOf(FileService.ENOSPC_ERROR) >= 0 && !this.storageService.getBoolean(FileService.ENOSPC_ERROR_IGNORE_KEY, StorageScope.WORKSPACE)) {
126126
const choices: PromptOption[] = [nls.localize('learnMore', "Instructions"), { label: nls.localize('neverShowAgain', "Don't Show Again") }];
127-
this.notificationService.prompt(Severity.Warning, nls.localize('enospcError', "{0} is running out of file handles. Please follow the instructions link to resolve this issue.", product.nameLong), choices).then(choice => {
127+
this.notificationService.prompt(Severity.Warning, nls.localize('enospcError', "{0} is unable to watch for file changes in this large workspace. Please follow the instructions link to resolve this issue.", product.nameLong), choices).then(choice => {
128128
switch (choice) {
129129
case 0 /* Read More */:
130130
window.open('https://go.microsoft.com/fwlink/?linkid=867693');

0 commit comments

Comments
 (0)