another question: is it possible to have lazarus k...
# prefect-community
v
another question: is it possible to have lazarus kick in sooner? right now we're seeing it kick in to resubmit flow runs at around the 15-17 minute mark, is there some config value we can set to bring this down a bit?
c
Right now the behavior of Lazarus is not configurable, although it has come up before; you’re seeing that delay for two reasons: • lazarus only runs every 10 minutes (configured here: https://github.com/PrefectHQ/server/blob/master/src/prefect_server/services/towel/lazarus.py#L25) • it looks for flow runs that have a heartbeat that is 10 minutes stale (configured here: https://github.com/PrefectHQ/server/blob/master/src/prefect_server/services/towel/lazarus.py#L80)
v
i see, thanks