Skip to content

Commit

Permalink
Reduce the no-open-file time limit to improve responsiveness.
Browse files Browse the repository at this point in the history
  • Loading branch information
msfterictraut committed Mar 29, 2019
1 parent 1204e8c commit f6711cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ _connection.onInitialize((params): InitializeResult => {
// reporting results. This will keep it responsive.
_analyzerService.setMaxAnalysisDuration({
openFilesTimeInMs: 50,
noOpenFilesTimeInMs: 4000
noOpenFilesTimeInMs: 1000
});

_analyzerService.setCompletionCallback(results => {
Expand Down

0 comments on commit f6711cd

Please sign in to comment.