Make the user fetch interval much longer
This commit is contained in:
parent
c3d4d0f547
commit
676bc8c0ee
|
@ -30,7 +30,7 @@ class IdentityStates(StateGraph):
|
|||
"""
|
||||
|
||||
outdated = State(try_interval=3600, force_initial=True)
|
||||
updated = State(try_interval=86400, attempt_immediately=False)
|
||||
updated = State(try_interval=86400 * 7, attempt_immediately=False)
|
||||
|
||||
outdated.transitions_to(updated)
|
||||
updated.transitions_to(outdated)
|
||||
|
|
Loading…
Reference in New Issue