anony123454323
anony123454323

Reputation: 71

How can I add an sqlite database to Apache Superset?

error

I'm trying to add a python sqlite3 generated database to superset. Getting that strange error. Is there a way to work around it?

Upvotes: 2

Views: 6149

Answers (1)

Ana GH
Ana GH

Reputation: 1710

You have to modify superset configuration (config.py file) adding this parameter:

PREVENT_UNSAFE_DB_CONNECTION = False

This is the link to a similar question in superset github repository: https://github.com/apache/incubator-superset/issues/9748, it points to the request to add this security measure.

Upvotes: 6

Related Questions