-
Notifications
You must be signed in to change notification settings - Fork 100
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
This is not necessarily an issue but there could be a safeguard to not accidentially write a null-value or null-key like this:
kafkactl produce my-topic -k "x" -v nullthis results in the string "null" to be written to the topic instead of the intended null-value.
It happened now multiple times by different people in my company and always resulted in major problems as there is now a "poison pill" in the topic.
so i thought, it maybe makes sense to add a safeguard for this specific string, such as:
> kafkactl produce my-topic -k "x" -v null
> kafkactl produce my-topic -k null -v "x"
Do you really intend to write the string "null" (tombstones are written using --null-value / --null-key) [y/N]?Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers