http://jira.mfd.msk:8088/browse/CLS-189 fix SDF 03/11 отправку сообщений на создание (поправил опечатки)

This commit is contained in:
AKurakin 2023-02-10 11:53:33 +03:00
parent fde8174e86
commit daa2e880ff

View file

@ -65,19 +65,19 @@ public class SdfCreatorBySTLDPayment {
/*Map<GroupWrapper, List<PaymentInstruction>> byOrder = */
List<Map.Entry<GroupWrapper, Collection<List<PaymentInstruction>>>> allEntries = group(paymentInstructionFound);
Set<String> queueToSend = new HashSet<>();
allEntries.forEach(entry -> {
log.info("Group category {}, index {}", entry.getKey().category, entry.getKey().getSortIndex());
GroupWrapper group = entry.getKey();
Collection<List<PaymentInstruction>> bySenderGroups = entry.getValue();
Set<String> queueToSend = new HashSet<>();
for (List<PaymentInstruction> bySenderGroup : bySenderGroups) {
Long senderIdSpecificToGroup = bySenderGroup.iterator().next().getSenderId();
log.info("Group senderId {}", senderIdSpecificToGroup);
queueToSend.add(saveSdfBeforeSendToKafka(senderIdSpecificToGroup, group.category, bySenderGroup, generationId));
}
log.info("Send command target queue: {}", queueToSend);
sendToKafkaSDFRequests(queueToSend, generationId);
});
log.info("Send command target queue: {}", queueToSend);
sendToKafkaSDFRequests(queueToSend, generationId);
allEntries.forEach(entry -> {
//category group
GroupWrapper group = entry.getKey();
@ -158,8 +158,8 @@ public class SdfCreatorBySTLDPayment {
}
SdfClearingRequest kafkaMessage = new SdfClearingRequest();
kafkaMessage.setGroupId(generationId);
Long requestId = kafkaSender.sendRequestToQueue(Consts.SDF03_PROCESS, kafkaMessage);
log.debug("Send to kafka command, queue={}, requestId={}", kQueue, requestId);
Long requestId = kafkaSender.sendRequestToQueue(kQueue, kafkaMessage);
log.debug("Send to kafka command, queue={}, requestId={}, generationId={}", kQueue, requestId, generationId);
}
}