carobaldino opened a new issue #13188: URL: https://github.com/apache/superset/issues/13188
According to the [documentation here](https://github.com/apache/superset/blob/3a2300b84a710c381969ef0d5e8bf7408b5a9870/UPDATING.md) and to [this PR](https://github.com/apache/superset/pull/11575), `ROW_LEVEL_SECURITY` flag has been moved to `FEATURE_FLAGS`. I have tried to add the flag into my `superset_config.py`, but it is not working. I do have others flags in the configuration file that are already working (such as `FAVICONS`, and `APP_ICON`), and logs says conf file is loading properly, so I think the problem is not related to the file itself. I've tried the following with no success: ``` FEATURE_FLAGS = { 'ROW_LEVEL_SECURITY': True, 'ALERT_REPORTS': True } ``` ``` DEFAULT_FEATURE_FLAGS = { 'ROW_LEVEL_SECURITY': True, 'ALERT_REPORTS': True } ``` ### Expected results Given the above configuration, I expect seeing the `Rol Level Security` and `Alerts` options under `Settings Menu`. ### Actual results  ### Environment - docker version: `20.10.3` - docker image: `apache/superset:1.0.1` - superset version: `1.0.1` - python version: The one included in the docker image - node.js version: The one included in the docker image #### How to reproduce the bug 1. Run ``` docker run -v "${PATH_TO_SUPERSET_CONFIG}":/app/pythonpath/superset_config.py \ -p <host_port>:<docker_port> \ apache/superset:1.0.1` ``` 2. Create admin user ``` docker exec -it superset-dev superset fab create-admin \ --username admin \ --firstname Superset \ --lastname Admin \ --email [email protected] \ --password admin ``` 3. Migrate local superset DB to latest ``` docker exec -it superset-dev superset db upgrade ``` 4. Load examples ``` docker exec -it superset-dev superset load_examples ``` 5. Initialize superset ``` docker exec -it superset-dev superset init ``` 6. Check your app in `localhost:<your_port>`, login with `admin` `admin` and drop down the Settings Menu. ### Checklist Make sure to follow these steps before submitting your issue - thank you! - [x] I have checked the superset logs for python stacktraces and included it here as text if there are any. - [x] I have reproduced the issue with at least the latest released version of superset. - [x] I have checked the issue tracker for the same issue and I haven't found one similar. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
