Reputation: 71
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
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