-
Notifications
You must be signed in to change notification settings - Fork 70
Description
OperationalError Traceback (most recent call last)
File c:\Users\MUHAMMED RASHID\miniconda3\envs\MLOPS\lib\site-packages\sqlalchemy\engine\base.py:1900, in Connection._execute_context(self, dialect, constructor, statement, parameters, execution_options, *args, **kw)
1899 if not evt_handled:
-> 1900 self.dialect.do_execute(
1901 cursor, statement, parameters, context
1902 )
1904 if self._has_events or self.engine._has_events:
File c:\Users\MUHAMMED RASHID\miniconda3\envs\MLOPS\lib\site-packages\sqlalchemy\engine\default.py:736, in DefaultDialect.do_execute(self, cursor, statement, parameters, context)
735 def do_execute(self, cursor, statement, parameters, context=None):
--> 736 cursor.execute(statement, parameters)
OperationalError: no such table: workspace
The above exception was the direct cause of the following exception:
OperationalError Traceback (most recent call last)
Cell In[8], line 1
----> 1 digits_svc_pipeline = digits_pipeline()
File c:\Users\MUHAMMED RASHID\miniconda3\envs\MLOPS\lib\site-packages\zenml\new\pipelines\pipeline.py:1225, in Pipeline.call(self, *args, **kwargs)
1222 return self.entrypoint(*args, **kwargs)
1224 self.prepare(*args, **kwargs)
-> 1225 return self._run(**self._run_args)
...
[SQL: SELECT workspace.id, workspace.created, workspace.updated, workspace.name, workspace.description
FROM workspace
WHERE workspace.name = ?]
[parameters: ('default',)]
(Background on this error at: https://sqlalche.me/e/14/e3q8)
Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings...