mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-12 04:50:39 +00:00
chore: better raise
Summary: addresses https://github.com/meta-llama/llama-stack/pull/1282#discussion_r1972546802 Test Plan:
This commit is contained in:
parent
6fa257b475
commit
a5f3645393
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class SQLiteSpanProcessor(SpanProcessor):
|
|||
self._local.conn = sqlite3.connect(self.conn_string)
|
||||
except Exception as e:
|
||||
print(f"Error connecting to SQLite database: {e}")
|
||||
raise e
|
||||
raise
|
||||
return self._local.conn
|
||||
|
||||
def setup_database(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue