File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
name = " superduper-framework"
7
7
description = " 🔮 Bring AI to your favourite database 🔮"
8
8
readme = " README.md"
9
- version = ' 0.5.18 '
9
+ version = ' 0.5.19 '
10
10
license = {file = " LICENSE" }
11
11
maintainers = [{name = " superduper.io, Inc." , email = " opensource@superduper.com" }]
12
12
keywords = [
Original file line number Diff line number Diff line change 4
4
import shutil
5
5
import sys
6
6
import tempfile
7
+ import traceback
7
8
import typing as t
8
9
import zipfile
9
10
from contextlib import contextmanager
@@ -177,14 +178,15 @@ def _apply():
177
178
_apply ()
178
179
except Exception as e :
179
180
logging .error (f'Exception during application apply :: { e } ' )
180
- raise
181
+ logging .error (traceback .format_exc ())
182
+ raise e
181
183
else :
182
184
try :
183
185
_apply ()
184
186
185
187
except Exception as e :
186
188
logging .error (f'Exception during application apply :: { e } ' )
187
- raise
189
+ raise e
188
190
189
191
@app .add ('/describe_tables' )
190
192
def describe_tables (db : 'Datalayer' = DatalayerDependency ()):
You can’t perform that action at this time.
0 commit comments