diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-08-04 17:14:51 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-08-05 15:45:01 +0200 |
commit | 453dcdb5e93a05e550094194bead446ac2247361 (patch) | |
tree | 54ff391e516e535249c926174085d459296eb8ff /server/sonar-ce | |
parent | c8bfb73f05b37160bd872a6ff8b3d227142fcb0d (diff) | |
download | sonarqube-453dcdb5e93a05e550094194bead446ac2247361.tar.gz sonarqube-453dcdb5e93a05e550094194bead446ac2247361.zip |
SONAR-7903 persist analysis reports in db
instead of file system (data/ce/reports). That allows
support of clustering.
Diffstat (limited to 'server/sonar-ce')
-rw-r--r-- | server/sonar-ce/src/test/java/org/sonar/ce/container/ComputeEngineContainerImplTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-ce/src/test/java/org/sonar/ce/container/ComputeEngineContainerImplTest.java b/server/sonar-ce/src/test/java/org/sonar/ce/container/ComputeEngineContainerImplTest.java index c9a83fa9177..9fc85e9f8a6 100644 --- a/server/sonar-ce/src/test/java/org/sonar/ce/container/ComputeEngineContainerImplTest.java +++ b/server/sonar-ce/src/test/java/org/sonar/ce/container/ComputeEngineContainerImplTest.java @@ -89,9 +89,9 @@ public class ComputeEngineContainerImplTest { .hasSize( CONTAINER_ITSELF + 75 // level 4 - + 7 // content of CeModule + + 6 // content of CeModule + 7 // content of CeQueueModule - + 4 // content of ProjectAnalysisTaskModule + + 3 // content of ProjectAnalysisTaskModule + 4 // content of CeTaskProcessorModule ); assertThat(picoContainer.getParent().getComponentAdapters()).hasSize( @@ -105,7 +105,7 @@ public class ComputeEngineContainerImplTest { assertThat(picoContainer.getParent().getParent().getParent().getComponentAdapters()).hasSize( COMPONENTS_IN_LEVEL_1_AT_CONSTRUCTION + 26 // level 1 - + 46 // content of DaoModule + + 47 // content of DaoModule + 2 // content of EsSearchModule + 55 // content of CorePropertyDefinitions + 1 // content of CePropertyDefinitions |