SUPPORT-9368: поменял переменные

This commit is contained in:
adel.ka 2025-10-16 13:16:53 +03:00
parent 3316cac258
commit a63b20b119
2 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ public class ReplyingKafkaConfig {
private String saslMechanism; private String saslMechanism;
@Value("${av.kafka.download.response}") @Value("${av.kafka.download.response}")
private String avReplyTopic; private String avReplyTopic;
@Value("${ervu.kafka.validate.export.reply.topic}") @Value("${ervu.kafka.validate.export.response}")
private String validateReplyTopic; private String validateReplyTopic;
@Bean @Bean

View file

@ -22,8 +22,8 @@ public class ValidationFileService {
public ValidationFileService( public ValidationFileService(
ReplyingKafkaService<Object, Bytes> replyingKafkaService, ReplyingKafkaService<Object, Bytes> replyingKafkaService,
ObjectMapper objectMapper, ObjectMapper objectMapper,
@Value("${ervu.kafka.validate.export.request.topic}") String validateExportRequestTopic, @Value("${ervu.kafka.validate.export.request}") String validateExportRequestTopic,
@Value("${ervu.kafka.validate.export.reply.topic}") String validateExportReplyTopic) { @Value("${ervu.kafka.validate.export.response}") String validateExportReplyTopic) {
this.replyingKafkaService = replyingKafkaService; this.replyingKafkaService = replyingKafkaService;
this.objectMapper = objectMapper; this.objectMapper = objectMapper;
this.validateExportRequestTopic = validateExportRequestTopic; this.validateExportRequestTopic = validateExportRequestTopic;