Skip to content

Commit

Permalink
Extend timeout for BaseProcessingSpec
Browse files Browse the repository at this point in the history
BaseProcessingSpec has a test that times out quite frequently.

The timeout period seems relatively arbitrary so simply extending it to avoid the need to keep re-running.
  • Loading branch information
colmsnowplow committed Jun 12, 2024
1 parent 155d70f commit 47d2ada
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ trait BaseProcessingSpec extends Specification {
checkpointRef <- Ref.of[IO, Int](0)
completionsRef <- Ref.of[IO, Vector[String]](Vector.empty)
queueBadSink <- Ref.of[IO, Vector[String]](Vector.empty)
_ <- TestApplication.run(args, completionsRef, checkpointRef, queueBadSink, input).timeout(60.seconds)
_ <- TestApplication.run(args, completionsRef, checkpointRef, queueBadSink, input).timeout(120.seconds)
checkpointed <- checkpointRef.get
completions <- completionsRef.get
badrows <- queueBadSink.get
Expand Down

0 comments on commit 47d2ada

Please sign in to comment.