Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jpassaro committed Mar 23, 2022
1 parent 454082b commit 22e9ca7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fs2-aws-sqs/src/main/scala/fs2/aws/sqs/SqsConfig.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import scala.concurrent.duration._
import scala.jdk.CollectionConverters._

case class SqsConfig(
override queueUrl: String,
override pollRate: FiniteDuration = 3.seconds,
override fetchMessageCount: Int = 100,
override messageAttributeNames: List[String] = Nil,
override val queueUrl: String,
override val pollRate: FiniteDuration = 3.seconds,
override val fetchMessageCount: Int = 100,
override val messageAttributeNames: List[String] = Nil,
) extends SqsConfig.Interface

object SqsConfig {
Expand Down

0 comments on commit 22e9ca7

Please sign in to comment.