mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
Merge branch 'ftes-mail-move-to-sse' into jbross-email-invitation
This commit is contained in:
+2
-1
@@ -483,6 +483,8 @@ public abstract class TrackedRaceImpl extends TrackedRaceWithWindEssentials impl
|
|||||||
ois.defaultReadObject();
|
ois.defaultReadObject();
|
||||||
attachedRaceLogs = new ConcurrentHashMap<>();
|
attachedRaceLogs = new ConcurrentHashMap<>();
|
||||||
markPassingsTimes = new ArrayList<com.sap.sse.common.Util.Pair<Waypoint, com.sap.sse.common.Util.Pair<TimePoint, TimePoint>>>();
|
markPassingsTimes = new ArrayList<com.sap.sse.common.Util.Pair<Waypoint, com.sap.sse.common.Util.Pair<TimePoint, TimePoint>>>();
|
||||||
|
// The short time wind cache needs to be there before operations such as maneuver recalculation try to access it
|
||||||
|
shortTimeWindCache = new ShortTimeWindCache(this, millisecondsOverWhichToAverageWind / 2);
|
||||||
cacheInvalidationTimerLock = new Object();
|
cacheInvalidationTimerLock = new Object();
|
||||||
windStore = EmptyWindStore.INSTANCE;
|
windStore = EmptyWindStore.INSTANCE;
|
||||||
competitorRankings = createCompetitorRankingsCache();
|
competitorRankings = createCompetitorRankingsCache();
|
||||||
@@ -493,7 +495,6 @@ public abstract class TrackedRaceImpl extends TrackedRaceWithWindEssentials impl
|
|||||||
maneuverCache = createManeuverCache();
|
maneuverCache = createManeuverCache();
|
||||||
triggerManeuverCacheRecalculationForAllCompetitors();
|
triggerManeuverCacheRecalculationForAllCompetitors();
|
||||||
logger.info("Deserialized race " + getRace().getName());
|
logger.info("Deserialized race " + getRace().getName());
|
||||||
shortTimeWindCache = new ShortTimeWindCache(this, millisecondsOverWhichToAverageWind / 2);
|
|
||||||
// considering the unlikely possibility that the course and this tracked race's internal structures
|
// considering the unlikely possibility that the course and this tracked race's internal structures
|
||||||
// may be inconsistent, e.g., due to non-atomic serialization of course and tracked race; see bug 2223
|
// may be inconsistent, e.g., due to non-atomic serialization of course and tracked race; see bug 2223
|
||||||
adjustStructureToCourse();
|
adjustStructureToCourse();
|
||||||
|
|||||||
@@ -27,15 +27,6 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<excludes>
|
|
||||||
<exclude>**/AsyncActionsExecutorTest.java</exclude>
|
|
||||||
</excludes>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@@ -82,7 +82,9 @@
|
|||||||
<module>com.sap.sailing.gwt.ui</module>
|
<module>com.sap.sailing.gwt.ui</module>
|
||||||
<module>com.sap.sailing.domain.test</module>
|
<module>com.sap.sailing.domain.test</module>
|
||||||
<module>com.sap.sse.replication.testsupport</module>
|
<module>com.sap.sse.replication.testsupport</module>
|
||||||
|
<!-- The following test fragment doesn't yet do what it should in the Maven context...
|
||||||
<module>com.sap.sse.gwt.test</module>
|
<module>com.sap.sse.gwt.test</module>
|
||||||
|
-->
|
||||||
<module>com.sap.sse.datamining.test</module>
|
<module>com.sap.sse.datamining.test</module>
|
||||||
<module>com.sap.sse.security.replication.test</module>
|
<module>com.sap.sse.security.replication.test</module>
|
||||||
<module>com.sap.sse.security.test</module>
|
<module>com.sap.sse.security.test</module>
|
||||||
|
|||||||
+1
-1
@@ -13,7 +13,7 @@ First of all, make sure you've looked at http://www.amazon.de/Patterns-Elements-
|
|||||||
* Install Google plugin for Eclipse (https://developers.google.com/eclipse/docs/download)
|
* Install Google plugin for Eclipse (https://developers.google.com/eclipse/docs/download)
|
||||||
* Install Eclipse debugger for GWT SuperDevMode (master version: http://p2.sapsailing.com/p2/sdbg; public release: http://sdbg.github.io/p2)
|
* Install Eclipse debugger for GWT SuperDevMode (master version: http://p2.sapsailing.com/p2/sdbg; public release: http://sdbg.github.io/p2)
|
||||||
3. Git (e.g. msysGit for Windows v1.7.10), http://git-scm.com
|
3. Git (e.g. msysGit for Windows v1.7.10), http://git-scm.com
|
||||||
4. MongoDB (e.g. Production Release 2.0.4), download: http://www.mongodb.org/
|
4. MongoDB (e.g. Production Release 2.6.7), download: http://www.mongodb.org/
|
||||||
5. RabbitMQ, download from http://www.rabbitmq.com/. Requires Erlang to be installed. RabbitMQ installer will assist in installing Erlang.
|
5. RabbitMQ, download from http://www.rabbitmq.com/. Requires Erlang to be installed. RabbitMQ installer will assist in installing Erlang.
|
||||||
6. JDK 1.7 (Java SE 7), http://jdk7.java.net
|
6. JDK 1.7 (Java SE 7), http://jdk7.java.net
|
||||||
7. JDK 1.8 (Java SE 8), http://jdk8.java.net
|
7. JDK 1.8 (Java SE 8), http://jdk8.java.net
|
||||||
|
|||||||
Reference in New Issue
Block a user