Skip to content

Commit 2e844d2

Browse files
committed
Bump Version 0.5.19
1 parent fb65dc4 commit 2e844d2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
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.18'
9+
version = '0.5.19'
1010
license = {file = "LICENSE"}
1111
maintainers = [{name = "superduper.io, Inc.", email = "opensource@superduper.com"}]
1212
keywords = [

superduper/rest/build.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import shutil
55
import sys
66
import tempfile
7+
import traceback
78
import typing as t
89
import zipfile
910
from contextlib import contextmanager
@@ -177,14 +178,15 @@ def _apply():
177178
_apply()
178179
except Exception as e:
179180
logging.error(f'Exception during application apply :: {e}')
180-
raise
181+
logging.error(traceback.format_exc())
182+
raise e
181183
else:
182184
try:
183185
_apply()
184186

185187
except Exception as e:
186188
logging.error(f'Exception during application apply :: {e}')
187-
raise
189+
raise e
188190

189191
@app.add('/describe_tables')
190192
def describe_tables(db: 'Datalayer' = DatalayerDependency()):

0 commit comments

Comments
 (0)