You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2021/04/27 10:26:11 UTC

[GitHub] [pulsar] jvoigt commented on issue #10377: Schema prevents usage of Dead Letter Queue DLQ

jvoigt commented on issue #10377:
URL: https://github.com/apache/pulsar/issues/10377#issuecomment-827496826


   @linlinnn  
   I've added a constructor. Like this:
   ```
   package com.jvoigt.issue;
   import lombok.Data;
   
   @Data
   class Payload {
       String message;
       public Payload() {
       }
   
       public Payload(String message) {
           this.message = message;
       }
   }
   ```
   But the problem is still there: When using the schema the message will not be delivered to the DLQ-Topic, there are no Logs indicating an error... just nothing happens :)
   
   


-- 
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org