Skip to content

Commit

Permalink
FEAT : CDE-348-rapport-derreur-bad-limiter-aux-erreurs-bloquantes :
Browse files Browse the repository at this point in the history
     - changement des log.error en log.warn pour les erreurs non bloquantes.
     - ajout du recueil des log.warn dans le retour du controller bestPpn.
     - changement du topic de destination pour les log.info et log.warn
     - ajout d'un topic de destination pour les log.warn
     - identification d'une exception IllegalDoiException dans le retour du webservice callDoi2Ppn
  • Loading branch information
EryneKL committed Feb 7, 2024
1 parent e2b9cfd commit 17b1adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/abes/bestppn/kafka/TopicConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public void kbartFromkafkaListener(ConsumerRecord<String, String> ligneKbart) {
}
}
} catch (IOException | URISyntaxException | RestClientException | IllegalDoiException e) {
//erreurs non bloquantes, on les inscrit dans le rapport, mais on n'arrête pas le programme
//erreurs non bloquantes, on n'arrête pas le programme
log.warn(e.getMessage());
workInProgress.get(filename).addLineKbartToMailAttachementWithErrorMessage(ligneKbartDto, e.getMessage());
workInProgress.get(filename).addNbLinesWithInputDataErrorsInExecutionReport();
Expand Down

0 comments on commit 17b1adf

Please sign in to comment.