From 11a0fe54c32049d0f06d694511f9b629e79ae1de Mon Sep 17 00:00:00 2001 From: Ivan Nikolaev-Axenov Date: Mon, 7 Oct 2024 17:05:56 +0300 Subject: [PATCH] UpdateMapService Map_AccountSymbolsHistory bug fixed --- .../java/ru/spcex/clearing/imdg/services/UpdateMapService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearing-parent/imdg/src/main/java/ru/spcex/clearing/imdg/services/UpdateMapService.java b/clearing-parent/imdg/src/main/java/ru/spcex/clearing/imdg/services/UpdateMapService.java index 2566cf8f9..cbc929a54 100644 --- a/clearing-parent/imdg/src/main/java/ru/spcex/clearing/imdg/services/UpdateMapService.java +++ b/clearing-parent/imdg/src/main/java/ru/spcex/clearing/imdg/services/UpdateMapService.java @@ -214,7 +214,7 @@ public class UpdateMapService extends AbstractUpdateMapService { AccountSymbolsHistory accountSymbolsHistory = new AccountSymbolsHistory(); createBusinessEvent(accountSymbolsHistory, eventType); accountSymbolsHistory.setObject((AccountSymbols) value); - hazelcastServerInstance.getMap(IMDGDistributedNames.Map_TradingClearingRegistryHistory).put(accountSymbolsHistory.getId(), accountSymbolsHistory); + hazelcastServerInstance.getMap(IMDGDistributedNames.Map_AccountSymbolsHistory).put(accountSymbolsHistory.getId(), accountSymbolsHistory); } else if (value instanceof CurrencyPairSecurity) { CurrencyPairSecurityHistory currencyPairSecurityHistory = new CurrencyPairSecurityHistory(); createBusinessEvent(currencyPairSecurityHistory, eventType);