Skip to content

Commit c02c306

Browse files
author
Gilles Grousset
committed
Increased dartanalyzer page size for faster analysis
1 parent a5b9c86 commit c02c306

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- Test report parsing fix for Windows (thanks to [victorgilc](https://github.com/victorgilc)).
2020
- Removed duplicated issues on the same file.
2121
- Better handling of missing test report file.
22+
- Faster analysis on large projects (increased analyser page size to 50)
2223

2324
## 0.3.0
2425

dart-lang/src/main/java/fr/insideapp/sonarqube/dart/lang/issues/dartanalyzer/DartAnalyzerSensor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public class DartAnalyzerSensor implements Sensor {
5454
private static final int ANALYZER_TIMEOUT = 10 * 60 * 1000;
5555
private static final String ANALYSIS_OPTIONS_FILENAME = "analysis_options.yaml";
5656
private static final String ANALYSIS_OPTIONS_FILE = "/fr/insideapp/sonarqube/dart/dartanalyzer/analysis_options.yaml";
57-
private static final Integer PAGE_SIZE = 10;
57+
private static final Integer PAGE_SIZE = 50;
5858
private boolean useExistingAnalysisOptions;
5959

6060
@Override

0 commit comments

Comments
 (0)