tenthe opened a new issue, #4494:
URL: https://github.com/apache/streampipes/issues/4494

   ### Body
   
   In the `KafkaPublishSink` class, errors during publishing are currently only 
written to the service logs:
   
   ```java
   try {
     Map<String, Object> rawEvent = event.getRaw();
     this.producer.publish(dataFormatDefinition.fromMap(rawEvent));
   } catch (SpRuntimeException e) {
     LOG.error(e.getMessage(), e);
   }
   ```
   
   As a result, users are not notified when a problem occurs.
   
   This should be changed to use StreamPipes logging so that the problem 
appears in the UI and is visible to the user.
   
   
   ### StreamPipes Committer
   
   I acknowledge that I am a maintainer/committer of the Apache StreamPipes 
project.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to