Skip to content

Commit

Permalink
FIX : CDE-195-creer-consumer-pour-generer-les-2-fichiers-de-log
Browse files Browse the repository at this point in the history
     - correction d'un contrôle dysfonctionnel
  • Loading branch information
EryneKL committed Oct 10, 2023
1 parent 8562e02 commit bfce834
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/fr/abes/logskbart/kafka/LogsListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void listenInfoKbart2KafkaAndErrorKbart2Kafka(ConsumerRecord<String, Stri
// Inscrit l'entity en BDD
repository.save(entity);

} else if (message.value().contains("OK")) { // Si la ligne sur le topic bestppn.endoftraitment contient OK
} else if (message.value().equals("OK")) { // Si la ligne sur le topic bestppn.endoftraitment contient OK

// Créer un nouveau Path avec le FileName (en remplaçant l'extension par .err)
Path source = null;
Expand All @@ -91,8 +91,7 @@ public void listenInfoKbart2KafkaAndErrorKbart2Kafka(ConsumerRecord<String, Stri
}

// Copie le fichier existant vers le répertoire temporaire en ajoutant sa date de création
assert source != null;
if (Files.exists(source)) {
if (source != null && Files.exists(source)) {
LocalDateTime time = LocalDateTime.now();
DateTimeFormatter format = DateTimeFormatter.ofPattern("yyyy-MM-dd-HH-mm-ss", Locale.FRANCE);
String date = format.format(time);
Expand Down

0 comments on commit bfce834

Please sign in to comment.