We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f364578 commit 203cbe8Copy full SHA for 203cbe8
tempto-kafka/src/main/java/io/prestodb/tempto/fulfillment/table/kafka/KafkaTableManager.java
@@ -124,6 +124,12 @@ private void deleteTopic(String topic) {
124
}
125
DeleteTopicsResult deleteTopicsResult = adminClient.deleteTopics(Collections.singletonList(topic));
126
deleteTopicsResult.all().get();
127
+ try {
128
+ Thread.sleep(1_000); // Wait for metadata propagation
129
+ } catch (InterruptedException e) {
130
+ Thread.currentThread().interrupt();
131
+ throw new RuntimeException("Interrupted while waiting for topic deletion: " + topic, e);
132
+ }
133
} catch (ExecutionException | InterruptedException e) {
134
throw new RuntimeException("Failed to delete topic " + topic, e);
135
0 commit comments