Skip to content

Commit 545e68b

Browse files
committed
Temp commit to break pipeline
- add error log to orchestrator.
1 parent 4778743 commit 545e68b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

migrations/versions/schema/2025-09-30_a87d11eb8dd1_add_nsistp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from orchestrator.targets import Target
1414

1515
# revision identifiers, used by Alembic.
16-
revision = "a87d11eb8dd1"
16+
revision = "a87d11eb8dd5"
1717
down_revision = "0e8d17ce0f06"
1818
branch_labels = None
1919
depends_on = None

wsgi.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
from graphql_federation import CUSTOM_GRAPHQL_MODELS
1919
import products # noqa: F401 Side-effects
2020
import workflows # noqa: F401 Side-effects
21+
import structlog
22+
23+
logger = structlog.get_logger(__name__)
2124

2225
app = OrchestratorCore(base_settings=AppSettings())
2326
app.register_graphql(graphql_models=CUSTOM_GRAPHQL_MODELS)
27+
28+
logger.error("TEST error")

0 commit comments

Comments
 (0)