Skip to content

Commit

Permalink
MODINVSTOR-1262 fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-barannyk committed Nov 11, 2024
1 parent 9024851 commit ad2a2e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected ServicePointSynchronizationHandler(ConsortiumDataCache consortiumDataC

@Override
public Future<String> handle(KafkaConsumerRecord<String, String> kafkaConsumerRecord) {
log.info("handle:: Processing event {}", kafkaConsumerRecord.topic());
log.info("handle:: Processing event {}", kafkaConsumerRecord::topic);
var headers = new CaseInsensitiveMap<>(KafkaHeaderUtils.kafkaHeadersToMap(
kafkaConsumerRecord.headers()));
return consortiumDataCache.getConsortiumData(headers)
Expand Down

0 comments on commit ad2a2e1

Please sign in to comment.