SUPPORT-8474: Fix

This commit is contained in:
Eduard Tihomirov 2024-09-06 11:54:07 +03:00
parent f4357aebf6
commit a9f5936afb
3 changed files with 6 additions and 3 deletions

View file

@ -23,7 +23,7 @@ public class ErvuKafkaConfig {
@Value("${ervu-kafka.bootstrap-servers}")
private String bootstrapServers;
@Value("${ervu-kafka.reply-topic}:ervu.organization.response")
@Value("${ervu-kafka.reply-topic}")
private String replyTopic;
@Value("${ervu-kafka.group-id}")

View file

@ -18,10 +18,10 @@ import org.springframework.stereotype.Service;
@Service
public class ErvuKafkaService {
@Value("${ervu-kafka.reply-topic}:ervu.organization.request")
@Value("${ervu-kafka.reply-topic}")
private String requestReplyTopic;
@Value("${ervu-kafka.request-topic}:ervu.organization.response")
@Value("${ervu-kafka.request-topic}")
private String requestTopic;
@Autowired

View file

@ -51,3 +51,6 @@ xa-data-source add \
/system-property=esia-uri.logout:add(value="https://esia-portal1.test.gosuslugi.ru/idp/ext/Logout")
/system-property=client-cert-hash:add(value="04508B4B0B58776A954A0E15F574B4E58799D74C61EE020B3330716C203E3BDD")
/system-property=ervu-kafka.bootstrap-servers:add(value="localhost:9092")
/system-property=ervu-kafka.reply-topic:add(value="ervu.organization.response")
/system-property=ervu-kafka.group-id:add(value="123123")
/system-property=ervu-kafka.request-topic:add(value="ervu.organization.request")