]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7282 move ReportComputationSteps behind PurgeDatastoresStep 1523/head
authorDaniel Schwarz <daniel.schwarz@sonarsource.com>
Mon, 16 Jan 2017 10:42:44 +0000 (11:42 +0100)
committerDaniel Schwarz <daniel.schwarz@sonarsource.com>
Mon, 16 Jan 2017 16:44:36 +0000 (17:44 +0100)
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/step/ReportComputationSteps.java

index 3d6f4fecd184e8f0bd8b664f97b95f7a87925982..55b545800e0475adfddfd9869b5e7fdf9112552a 100644 (file)
@@ -100,13 +100,13 @@ public class ReportComputationSteps extends AbstractComputationSteps {
     EnableAnalysisStep.class,
 
     UpdateQualityProfilesLastUsedDateStep.class,
-    IndexComponentsStep.class,
     PurgeDatastoresStep.class,
 
     // ES indexing is done after all db changes
     IndexIssuesStep.class,
     IndexTestsStep.class,
     IndexProjectMeasuresStep.class,
+    IndexComponentsStep.class,
 
     // notifications are sent at the end, so that webapp displays up-to-date information
     SendIssueNotificationsStep.class,