Skip to content

Commit

Permalink
Bump Version 0.5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
blythed committed Feb 1, 2025
1 parent fb65dc4 commit 2e844d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "superduper-framework"
description = "🔮 Bring AI to your favourite database 🔮"
readme = "README.md"
version = '0.5.18'
version = '0.5.19'
license = {file = "LICENSE"}
maintainers = [{name = "superduper.io, Inc.", email = "[email protected]"}]
keywords = [
Expand Down
6 changes: 4 additions & 2 deletions superduper/rest/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import shutil
import sys
import tempfile
import traceback
import typing as t
import zipfile
from contextlib import contextmanager
Expand Down Expand Up @@ -177,14 +178,15 @@ def _apply():
_apply()
except Exception as e:
logging.error(f'Exception during application apply :: {e}')
raise
logging.error(traceback.format_exc())
raise e
else:
try:
_apply()

except Exception as e:
logging.error(f'Exception during application apply :: {e}')
raise
raise e

@app.add('/describe_tables')
def describe_tables(db: 'Datalayer' = DatalayerDependency()):
Expand Down

0 comments on commit 2e844d2

Please sign in to comment.