Merge remote-tracking branch 'origin/main' into save_step_data
This commit is contained in:
commit
2dc1e00d69
|
@ -34,7 +34,6 @@ peopleops.partner.program-lead@status.im,146
|
|||
peopleops.partner.project-lead@status.im,147
|
||||
peopleops.partner.sme@status.im,148
|
||||
peopleops.partner1.sme@status.im,149
|
||||
peopleops.partner@status.im
|
||||
peopleops.partner@status.im,150
|
||||
peopleops.talent.program-lead@status.im
|
||||
peopleops.talent.project-lead@status.im
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
"""__init__."""
|
||||
import os
|
||||
import sys
|
||||
import faulthandler
|
||||
from typing import Any
|
||||
|
||||
import connexion # type: ignore
|
||||
|
@ -80,6 +81,8 @@ def start_scheduler(
|
|||
|
||||
def create_app() -> flask.app.Flask:
|
||||
"""Create_app."""
|
||||
faulthandler.enable()
|
||||
|
||||
# We need to create the sqlite database in a known location.
|
||||
# If we rely on the app.instance_path without setting an environment
|
||||
# variable, it will be one thing when we run flask db upgrade in the
|
||||
|
|
Loading…
Reference in New Issue