Skip to content

Commit 3930cb0

Browse files
committed
Bump Version 0.5.7
1 parent 719b321 commit 3930cb0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "superduper-framework"
77
description = "🔮 Bring AI to your favourite database 🔮"
88
readme = "README.md"
9-
version = '0.5.6'
9+
version = '0.5.7'
1010
license = {file = "LICENSE"}
1111
maintainers = [{name = "superduper.io, Inc.", email = "[email protected]"}]
1212
keywords = [

superduper/rest/build.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@ def build_rest_app(app: SuperDuperApp):
7171
"""
7272
CFG.log_colorize = False
7373

74+
@app.add("/health", method="get")
75+
def health():
76+
return {"status": 200}
77+
7478
@app.add("/handshake/config", method="post")
7579
def handshake(cfg: str):
7680
from superduper import CFG

0 commit comments

Comments
 (0)