aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-main
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-11720 Set different memory defaults for EE+Michal Duda2019-05-215-15/+45
|
* SONAR-12108 Support Java 11 RTEDuarte Meneses2019-05-167-29/+118
|
* Revert "SONAR-11792 use dedicated temp directory for ES"Sébastien Lesaint2019-05-0610-337/+205
| | | | This reverts commit 0257bd131f74ec031f19171869cc9e8cedd45dd2.
* Upgrade assertj-core to 3.12.2 and assertj-guava to 3.2.1 for compatibility ↵Duarte Meneses2019-04-301-6/+6
| | | | with Java 11
* SONAR-11792 use dedicated temp directory for ESSébastien Lesaint2019-03-1910-205/+337
|
* SONAR-11792 only ES executable for linux/mac is usedSébastien Lesaint2019-03-191-8/+1
|
* SONAR-11792 update ES JVM options to match defaults in ES 6.6.2Sébastien Lesaint2019-03-194-48/+212
|
* SONAR-11792 define ES's JVM tmp directory to SQ's tmp directorySébastien Lesaint2019-03-196-16/+28
|
* SONAR-11792 change ES data directory to es6Sébastien Lesaint2019-03-192-3/+21
|
* SONAR-11792 use memory safe implemen to delete deprecated ES dirSébastien Lesaint2019-03-191-2/+2
|
* SONAR-11792 update ES compile dependency to 6.6.2Sébastien Lesaint2019-03-191-2/+1
|
* SONAR-11792 fix path.conf to allow ES 6.6 runtime to bootSébastien Lesaint2019-03-194-19/+27
|
* SONAR-11804 do not send -server flag to ES JVM anymoreSébastien Lesaint2019-03-183-6/+3
|
* Fix license headers for 2019Duarte Meneses2019-01-02104-104/+104
|
* Remove unexpected file header in EsYmlSettingsTestSimon Brandhof2018-06-121-22/+4
|
* SONAR-SONAR-10294 Ignore ES_JAVA_OPTS env variableEric Hartmann2018-06-082-4/+29
|
* SONAR-10604 property sonar.cluster.hosts is only for app nodesSimon Brandhof2018-05-108-34/+34
|
* SONAR-10604 ignore sonar.cluster.node.port on search nodesSimon Brandhof2018-05-101-0/+5
|
* SONAR-10604 remove cleanup of APP state when all APPs are downSimon Brandhof2018-05-101-9/+0
|
* SONAR-10604 remove HazelcastMember.Attribute.NODE_TYPESimon Brandhof2018-05-103-14/+2
|
* SONAR-10604 Remove Hazelcast on Search nodesEric Hartmann2018-05-1013-180/+295
|
* Fix Quality flawsSimon Brandhof2018-05-102-4/+4
|
* SONAR-10607 fix ability to disable Elasticsearch seccomp checkSimon Brandhof2018-04-252-2/+23
|
* Fix tests on WindowsJulien HENRY2018-03-131-7/+12
|
* Fix some Java compiler warningsSimon Brandhof2018-03-122-2/+2
|
* Move To GradleDavid Rautureau2018-03-094-133/+40
|
* SONAR-10300 Forbid system properties in api/settingsJulien Lancelot2018-02-0125-410/+450
|
* Set version 7.1-SNAPSHOTSimon Brandhof2018-01-241-1/+1
|
* Upgrade assertJ from 3.4.1 to 3.9.0Simon Brandhof2018-01-141-1/+1
|
* Cleanup code based on Intellij inspectionsSimon Brandhof2018-01-1415-23/+23
|
* Fix license headers for 2018Simon Brandhof2018-01-07104-111/+122
|
* Fix ignored Selenium testsEric Hartmann2017-11-141-34/+0
|
* Prepare for next development iterationJulien Lancelot2017-10-271-1/+1
|
* Compute Engine must start after its local web serverSimon Brandhof2017-10-201-1/+1
|
* Fix quality flawsDaniel Schwarz2017-10-171-3/+6
|
* Automatic merge from branch-6.6ssjenka2017-10-1119-349/+474
|\ | | | | | | | | | | | | | | | | | | | | | | | | * origin/branch-6.6: Prepare for next development iteration SONAR-9721 Fix potential OkHttpClient connection leak Publish 6.6 Release Candidate 1 fix quality flaws Propagate parameters of SQ analysis required by burgr fix unwanted text wrapping in the header in ie11 SONAR-9908 on Windows, launch Elasticsearch directly, without batch files (#2642) SONAR-9694 Ignore when secondary locations are out of current file for backdating Fix sidebar position helper in IE
| * Prepare for next development iterationSimon Brandhof2017-10-111-1/+1
| |
| * Publish 6.6 Release Candidate 1Simon Brandhof2017-10-101-1/+1
| |
| * fix quality flawsDaniel Schwarz2017-10-102-38/+93
| |
| * SONAR-9908 on Windows, launch Elasticsearch directly, without batch files ↵Daniel Schwarz2017-10-1019-342/+412
| | | | | | | | | | | | | | (#2642) SONAR-9908 on Windows, launch Elasticsearch directly, without batch files When starting the batch files on windows, we were not able to shutdown Elasticsearch gracefully.
* | Fix two logger callsDaniel Trebbien2017-10-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | One logger call was using incorrect syntax for a formatting anchor ('%s' should be '{}'). The other logger call had three formatting anchors, but only passed two values. These issues were found by SLF4J Helper for NetBeans IDE: http://plugins.netbeans.org/plugin/72557/
* | Incorporate the constant property names into the logger format stringDaniel Trebbien2017-10-101-12/+12
| | | | | | | | The resulting string concatenation is still a constant expression.
* | Utilize parameterized logging rather than String.format()Daniel Trebbien2017-10-102-5/+3
| |
* | Utilize parameterized loggingDaniel Trebbien2017-10-103-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | As suggested in the SLF4J FAQ: https://www.slf4j.org/faq.html#logging_performance .. parameterized logging can improve the efficiency of logger calls when logging at the specified level is disabled. In addition, per the FAQ: https://www.slf4j.org/faq.html#paramException since SLF4J 1.6.0 it is possible to use parameterized logging and also log an exception/throwable. These changes were suggested by SLF4J Helper for NetBeans IDE: http://plugins.netbeans.org/plugin/72557/
* | Set version to 6.7-SNAPSHOTSimon Brandhof2017-10-091-1/+1
|/
* SONAR-9811 fix quality flawsDaniel Schwarz2017-10-022-6/+6
| | | | Renamed variable to avoid misunderstandings
* SONAR-9811 change es data dir to data/es5, delete data/es during startupDaniel Schwarz2017-10-025-19/+109
|
* fix unstable UT in SearchNodeHealthProviderTestSébastien Lesaint2017-09-281-2/+3
|
* SONAR-9789 Display once a log message when waiting for ES to be up and runningEric Hartmann2017-09-271-1/+8
|
* SONAR-9802 remove useless attributes of HazelcastMemberSimon Brandhof2017-09-261-4/+1
|