Skip to content

Commit

Permalink
Fix scheduler inProgressDuration parsing (#5281)
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe authored Jul 14, 2022
1 parent 8d31e96 commit 4016aa8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class CreationJobManager(feedFactory: (ActorRefFactory, String, String, Int, Arr
}

object CreationJobManager {
private val baseTimeout = loadConfigOrThrow[Int](ConfigKeys.schedulerInProgressJobRetention).seconds
private val baseTimeout = loadConfigOrThrow[FiniteDuration](ConfigKeys.schedulerInProgressJobRetention)
private val blackboxMultiple = loadConfigOrThrow[Int](ConfigKeys.schedulerBlackboxMultiple)

def props(feedFactory: (ActorRefFactory, String, String, Int, Array[Byte] => Future[Unit]) => ActorRef,
Expand Down

0 comments on commit 4016aa8

Please sign in to comment.