Deleting a topic using .kfk.TopicDel doesn't remove that from the list of topics returned by .kfk.Metadata
client: .kfk.Consumer[`metadata.broker.list`group.id!`localhost:9092`0];
.kfk.Metadata[client]`topics;
topic: .kfk.Topic[client; `new_topic; ()!()];
.kfk.Metadata[client]`topics;
.kfk.TopicDel topic;
.kfk.Metadata[client]`topics;
```