fix chartdata caching. Fixes EMA values always the same

This commit is contained in:
elroy 2017-07-06 21:33:08 +02:00
parent 8952882907
commit ba26734bbd
1 changed files with 1 additions and 1 deletions
src/main/java/nl/komtek/gpi/services

View File

@ -154,7 +154,7 @@ public class GunbotProxyService {
}
}
@Cacheable(value = "chartData", key = "#currencyPair")
@Cacheable(value = "chartData", key = "#currencyPair+#start")
public String getChartData(String currencyPair, String start, long period) {
long startLong = 0;