We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7661f6c commit efd8727Copy full SHA for efd8727
sentry-samples/sentry-samples-console/src/main/java/io/sentry/samples/console/kafka/KafkaShowcase.java
@@ -68,7 +68,7 @@ private static Thread startKafkaConsumerThread(
68
69
try (KafkaConsumer<String, String> consumer =
70
new KafkaConsumer<>(consumerProperties)) {
71
- consumer.subscribe(Collections.singletonList(topic));
+ consumer.subscribe(Collections.singletonList(TOPIC));
72
73
while (!Thread.currentThread().isInterrupted() && consumedLatch.getCount() > 0) {
74
final ConsumerRecords<String, String> records =
0 commit comments