mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-25 08:41:00 +00:00
Make the user fetch interval much longer
This commit is contained in:
parent
c3d4d0f547
commit
676bc8c0ee
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue