Skip to content

Commit

Permalink
returning empty fs2.stream instead of no implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
abhivermaaa committed Apr 21, 2024
1 parent d179477 commit 9e43eed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ object KafkaClientAlgebra {
: fs2.Stream[F, Either[Throwable, (StringRecord, (Partition, Offset))]] = ???

override def consumeSafelyWithOffsetInfo(topicName: TopicName, consumerGroup: ConsumerGroup, commitOffsets: Boolean)
: fs2.Stream[F, Either[Throwable, ((GenericRecord, Option[GenericRecord], Option[Headers]), (Partition, Offset))]] = ???
: fs2.Stream[F, Either[Throwable, ((GenericRecord, Option[GenericRecord], Option[Headers]), (Partition, Offset))]] = fs2.Stream.empty

override def withProducerRecordSizeLimit(sizeLimitBytes: Long): F[KafkaClientAlgebra[F]] = Sync[F].delay {
getTestInstance(cache, schemaRegistryUrl, schemaRegistry, sizeLimitBytes.some)
Expand Down

0 comments on commit 9e43eed

Please sign in to comment.