spiff-arena/spiffworkflow-backend/bin/start_blocking_appscheduler.py
jasquat 6a99762f70
better-db-migration-waiting (#1732)
* explicitly wait for db migrations to be completed instead of sleeping w/ burnettk

* code rabbit suggestion w/ burnettk

* get rid of the set x w/ burnettk

---------

Co-authored-by: jasquat <jasquat@users.noreply.github.com>
2024-06-13 13:34:32 -04:00

24 lines
693 B
Python
Executable File

"""Start the appscheduler in blocking mode."""
import time
from apscheduler.schedulers.background import BlockingScheduler # type: ignore
from spiffworkflow_backend import create_app
from spiffworkflow_backend.background_processing.apscheduler import start_apscheduler
def main() -> None:
# TODO: in 30 days remove this sleep when the new bash wrapper script is on prod envs
seconds_to_wait = 100
print(f"sleeping for {seconds_to_wait} seconds to give the api container time to run the migration")
time.sleep(seconds_to_wait)
print("done sleeping")
####
app = create_app()
start_apscheduler(app, BlockingScheduler)
if __name__ == "__main__":
main()