You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by "Mickael Maison (Jira)" <ji...@apache.org> on 2021/09/09 16:41:01 UTC

[jira] [Updated] (KAFKA-13256) Possible NPE in ConfigDef when rendering (enriched) RST or HTML when documentation is not set/NULL

     [ https://issues.apache.org/jira/browse/KAFKA-13256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mickael Maison updated KAFKA-13256:
-----------------------------------
    Affects Version/s: 3.0.0

> Possible NPE in ConfigDef when rendering (enriched) RST or HTML when documentation is not set/NULL
> --------------------------------------------------------------------------------------------------
>
>                 Key: KAFKA-13256
>                 URL: https://issues.apache.org/jira/browse/KAFKA-13256
>             Project: Kafka
>          Issue Type: Bug
>          Components: clients
>    Affects Versions: 3.0.0, 2.8.0
>            Reporter: René Kerner
>            Assignee: René Kerner
>            Priority: Major
>             Fix For: 3.1.0
>
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> While working on Debezium I discovered the following issue:
> When Kafka's ConfigDef renders the HTML or RST documentation representation of the config definition, it requires `ConfigKey.documentation` member variable to be a java.lang.String instance that's set to an actual value different than NULL, else NPE happens:
> {code:java}
>  b.append(key.documentation.replaceAll("\n", "<br>"));
> {code}
> {code:java}
>  for (String docLine : key.documentation.split("\n")) {
> {code}
>  
> When `documentation` is not set/NULL I suggest to either set a valid String like "No documentation available" or skip that config key.
>  
> I could provide a PR to fix this soon.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)