Skip to content

Commit 7d68f7f

Browse files
authored
Do not init http handler for CLI commands (alerta#1212)
1 parent 05f9ecb commit 7d68f7f

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

alerta/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@
2626
""")
2727

2828
from .app import create_app # noqa isort:skip
29-
app = create_app()

alerta/commands.py

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import sys
22
from datetime import datetime, timedelta
3+
from typing import Any, Dict
34

45
import click
5-
from flask import current_app
6+
from flask import Flask, current_app
67
from flask.cli import FlaskGroup, with_appcontext
78

9+
from alerta.app import config, db, qb
810
from alerta.auth.utils import generate_password_hash
911
from alerta.models.enums import Scope
1012
from alerta.models.key import ApiKey
@@ -13,12 +15,19 @@
1315
from alerta.version import __version__
1416

1517

16-
def _create_app(info):
17-
from alerta.app import create_app
18-
return create_app()
18+
def create_app(config_override: Dict[str, Any] = None, environment: str = None) -> Flask:
19+
app = Flask(__name__)
20+
app.config['ENVIRONMENT'] = environment
21+
config.init_app(app)
22+
app.config.update(config_override or {})
1923

24+
db.init_db(app)
25+
qb.init_app(app)
2026

21-
@click.group(cls=FlaskGroup, create_app=_create_app, add_version_option=False)
27+
return app
28+
29+
30+
@click.group(cls=FlaskGroup, create_app=create_app, add_version_option=False)
2231
@click.version_option(version=__version__)
2332
def cli():
2433
"""

wsgi.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from alerta import app # noqa: F401
1+
from alerta import create_app
2+
3+
app = create_app()

0 commit comments

Comments
 (0)