Skip to content

Commit

Permalink
Turn off HotExit due to regression (microsoft#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
kburtram authored Dec 19, 2017
1 parent 2e19ab4 commit 18066a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vs/workbench/services/textfile/common/textFileService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,9 @@ export abstract class TextFileService implements ITextFileService {
}

// Hot exit
const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT;
// {{SQL CARBON EDIT}}
// const hotExitMode = configuration && configuration.files ? configuration.files.hotExit : HotExitConfiguration.ON_EXIT;
const hotExitMode = HotExitConfiguration.OFF;
if (hotExitMode === HotExitConfiguration.OFF || hotExitMode === HotExitConfiguration.ON_EXIT_AND_WINDOW_CLOSE) {
this.configuredHotExit = hotExitMode;
} else {
Expand Down

0 comments on commit 18066a8

Please sign in to comment.