Skip to content

Commit

Permalink
fix info endpoint status
Browse files Browse the repository at this point in the history
  • Loading branch information
douwevandermeij committed Jul 23, 2023
1 parent 5fb93c5 commit 3446526
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fractal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Fractal is a scaffolding toolkit for building SOLID logic for your Python applications."""

__version__ = "4.1.1"
__version__ = "4.1.2"

from abc import ABC

Expand Down
2 changes: 1 addition & 1 deletion fractal/contrib/fastapi/routers/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def info(
data = [
AdapterInfo(
adapter=adapter.__class__.__name__,
status=False,
status_ok=False,
)
for adapter in adapters
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fractal-toolkit"
version = "4.1.1"
version = "4.1.2"
description = "Fractal is a scaffolding toolkit for building SOLID logic for your Python applications."
authors = ["Douwe van der Meij <douwe@karibu-online.nl>"]

Expand Down

0 comments on commit 3446526

Please sign in to comment.