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 14630aa commit 149948bCopy full SHA for 149948b
external/kafka/src/main/scala/org/apache/spark/streaming/kafka/ReliableKafkaReceiver.scala
@@ -227,8 +227,9 @@ class ReliableKafkaReceiver[
227
228
ZkUtils.updatePersistentPath(zkClient, zkPath, offset.toString)
229
} catch {
230
- case e: Exception => logWarning(s"Exception during commit offset $offset for topic" +
231
- s"${topicAndPart.topic}, partition ${topicAndPart.partition}", t)
+ case e: Exception =>
+ logWarning(s"Exception during commit offset $offset for topic" +
232
+ s"${topicAndPart.topic}, partition ${topicAndPart.partition}", e)
233
}
234
235
logInfo(s"Committed offset $offset for topic ${topicAndPart.topic}, " +
0 commit comments