Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 89b5311

Browse files
Merge pull request #73 from codiga/10-second-polling
Update the rules cache polling from 3 to 10 seconds
2 parents b9010d5 + 6cc0959 commit 89b5311

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"React",
3232
"Typescript"
3333
],
34-
"version": "0.8.15",
34+
"version": "0.8.16",
3535
"engines": {
3636
"node": "^16.0.0",
3737
"vscode": "^1.70.0"
@@ -218,4 +218,4 @@
218218
"publisherId": "1ff72dc4-0da2-4de5-93cc-b443bb0a75f7",
219219
"isPreReleaseVersion": false
220220
}
221-
}
221+
}

src/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ export const AUTO_COMPLETION_CHARACTER_TRIGGER = "./";
3535
// 10 seconds
3636
export const CODING_ASSISTANT_SHORTCUTS_POLLING_MS = 10000;
3737

38-
// 3 seconds
39-
export const RULES_POLLING_INTERVAL_MS = 3000;
38+
// 10 seconds
39+
export const RULES_POLLING_INTERVAL_MS = 10000;
4040

4141
// time before we wait doing a code analysis
4242
export const TIME_BEFORE_STARTING_ANALYSIS_MILLISECONDS = 500;

0 commit comments

Comments
 (0)