Skip to content

Commit

Permalink
Increased dartanalyzer page size for faster analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilles Grousset committed Aug 12, 2020
1 parent a5b9c86 commit c02c306
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Test report parsing fix for Windows (thanks to [victorgilc](https://github.com/victorgilc)).
- Removed duplicated issues on the same file.
- Better handling of missing test report file.
- Faster analysis on large projects (increased analyser page size to 50)

## 0.3.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class DartAnalyzerSensor implements Sensor {
private static final int ANALYZER_TIMEOUT = 10 * 60 * 1000;
private static final String ANALYSIS_OPTIONS_FILENAME = "analysis_options.yaml";
private static final String ANALYSIS_OPTIONS_FILE = "/fr/insideapp/sonarqube/dart/dartanalyzer/analysis_options.yaml";
private static final Integer PAGE_SIZE = 10;
private static final Integer PAGE_SIZE = 50;
private boolean useExistingAnalysisOptions;

@Override
Expand Down

0 comments on commit c02c306

Please sign in to comment.