Make the user fetch interval much longer

pull/107/head
Andrew Godwin 2022-12-04 10:46:59 -07:00
rodzic c3d4d0f547
commit 676bc8c0ee
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)