You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In what version(s) of Spring for Apache Kafka are you seeing this issue?
3.3.3
Describe the bug
KafkaOperations is in a package annotated with @NonNullApi, therefore all method parameters are considered non-nullable, unless annotated differently. KafkaOperations does not have any nullability annotations, despite the data to send being @Nullable in KafkaTemplate.
Expected behavior
KafkaOperations should have nullability annotations similar to KafkaTemplate.
The text was updated successfully, but these errors were encountered:
In what version(s) of Spring for Apache Kafka are you seeing this issue?
3.3.3
Describe the bug
KafkaOperations
is in a package annotated with@NonNullApi
, therefore all method parameters are considered non-nullable, unless annotated differently.KafkaOperations
does not have any nullability annotations, despite the data to send being@Nullable
inKafkaTemplate
.Expected behavior
KafkaOperations
should have nullability annotations similar toKafkaTemplate
.The text was updated successfully, but these errors were encountered: