Skip to content

Commit f287722

Browse files
committed
[SPARK-13569][STREAMING][KAFKA] fix spacing
1 parent 723bf1c commit f287722

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

external/kafka-0-10/src/main/scala/org/apache/spark/streaming/kafka010/ConsumerStrategy.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ private case class Subscribe[K, V](
9999
} catch {
100100
case x: NoOffsetForPartitionException if shouldSuppress =>
101101
logWarning("Catching NoOffsetForPartitionException since " +
102-
ConsumerConfig.AUTO_OFFSET_RESET_CONFIG + "is none. See KAFKA-3370")
102+
ConsumerConfig.AUTO_OFFSET_RESET_CONFIG + " is none. See KAFKA-3370")
103103
}
104104
toSeek.asScala.foreach { case (topicPartition, offset) =>
105105
consumer.seek(topicPartition, offset)
@@ -149,7 +149,7 @@ private case class SubscribePattern[K, V](
149149
} catch {
150150
case x: NoOffsetForPartitionException if shouldSuppress =>
151151
logWarning("Catching NoOffsetForPartitionException since " +
152-
ConsumerConfig.AUTO_OFFSET_RESET_CONFIG + "is none. See KAFKA-3370")
152+
ConsumerConfig.AUTO_OFFSET_RESET_CONFIG + " is none. See KAFKA-3370")
153153
}
154154
toSeek.asScala.foreach { case (topicPartition, offset) =>
155155
consumer.seek(topicPartition, offset)

0 commit comments

Comments
 (0)