-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: tweak polling constants to improve perf (#459)
- Loading branch information
Showing
4 changed files
with
33 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
export const COMMANDS_POLLING = 150; | ||
export const NODE_JS_INSTALL_POLLING = 150; | ||
export const COMMANDS_POLLING = 250; | ||
export const COMMAND_LIST_POLLING = 1000; | ||
export const NODE_JS_INSTALL_POLLING = 250; | ||
export const BASIC_WORKSPACE_POLLING = 5000; | ||
export const PROJECTS_POLLING = 5000; | ||
export const TARGET_POLLING = 5000; | ||
export const SCHEMATICS_POLLING = 5000; | ||
export const EXTENSIONS_POLLING = 5000; | ||
export const PROJECTS_POLLING = 15000; | ||
export const TARGET_POLLING = 30000; | ||
export const SCHEMATICS_POLLING = 30000; | ||
export const EXTENSIONS_POLLING = 30000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters